feat(backend): rouage gin /api/v1, enveloppe {data,meta}/{error}, health réel, stubs 501 + test de contrat routes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/vaultdrop/backend/pkg/api"
|
||||
)
|
||||
|
||||
func FilesList(c *gin.Context) { api.NotImplemented(c) }
|
||||
func FilesGet(c *gin.Context) { api.NotImplemented(c) }
|
||||
func FilesDelete(c *gin.Context) { api.NotImplemented(c) }
|
||||
func FilesSearch(c *gin.Context) { api.NotImplemented(c) }
|
||||
func FilesUpload(c *gin.Context) { api.NotImplemented(c) }
|
||||
Reference in New Issue
Block a user