feat(backend): rouage gin /api/v1, enveloppe {data,meta}/{error}, health réel, stubs 501 + test de contrat routes

This commit is contained in:
m
2026-09-10 07:16:57 +02:00
parent 837bfa8a12
commit bdf1fadce9
13 changed files with 193 additions and 28 deletions
+9
View File
@@ -0,0 +1,9 @@
package handlers
import (
"github.com/gin-gonic/gin"
"github.com/vaultdrop/backend/pkg/api"
)
func OcrJobsCreate(c *gin.Context) { api.NotImplemented(c) }
func OcrJobsGet(c *gin.Context) { api.NotImplemented(c) }