chore: migrate and structure cmbone project

This commit is contained in:
QiuSW
2026-07-08 15:13:26 +08:00
parent 519a532038
commit e5d10577c0
123 changed files with 9076 additions and 25 deletions
+12
View File
@@ -0,0 +1,12 @@
package services
import (
"cmbone/platform"
)
type OCRService struct{}
// 识别Base64图片(data:image/png;base64,...)
func (o *OCRService) RecognizeImageBase64(base64str string) (string, error) {
return platform.RecognizeImageBase64(base64str)
}