fix: TestSleepStrict

This commit is contained in:
lilong.129
2023-08-24 21:18:01 +08:00
parent 02a2d800e5
commit be87a2cdcc
3 changed files with 17 additions and 7 deletions
+14 -4
View File
@@ -53,10 +53,20 @@ func (o OCRResults) ToOCRTexts() (ocrTexts OCRTexts) {
}
type ImageResult struct {
URL string `json:"url"` // image uploaded url
OCRResult OCRResults `json:"ocrResult"` // OCR texts
LiveType string `json:"liveType"` // 直播间类型
UIResult UIResultMap `json:"uiResult"` // 图标检测
URL string `json:"url"` // image uploaded url
OCRResult OCRResults `json:"ocrResult"` // OCR texts
// NoLive(非直播间
// Shop(电商)
// LifeService(生活服务)
// Show(秀场)
// Game(游戏)
// People(多人)
// PKPK
// Media(媒体)
// Chat(语音)
// Event(赛事)
LiveType string `json:"liveType"` // 直播间类型
UIResult UIResultMap `json:"uiResult"` // 图标检测
}
type APIResponseImage struct {