Files
FamilyHUB/backend/src/integrations/ocr/ocr.go
T
admin 9d845c8899 Restructured project
- backend moved to backend directory
- added and initialized frontend with vue
- moved infrastructure files to infra directory
2026-04-01 23:16:27 +03:00

10 lines
198 B
Go

package ocr
import "context"
// OCR — контракт для любого OCR сервиса
type OCR interface {
Recognize(ctx context.Context, image []byte) (string, error)
Close() error
}