Files
Kazier/backend/internal/handlers/ocr.go
T
2026-07-12 09:15:06 +02:00

26 lines
464 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func (h *Handlers) CreateOcrJob(c *gin.Context) {
c.JSON(http.StatusNotImplemented, gin.H{
"error": gin.H{
"code": "NOT_IMPLEMENTED",
"message": "OCR job creation not yet implemented",
},
})
}
func (h *Handlers) GetOcrJobStatus(c *gin.Context) {
c.JSON(http.StatusNotFound, gin.H{
"error": gin.H{
"code": "JOB_NOT_FOUND",
"message": "OCR job not found",
},
})
}