diff --git a/cmd/server.go b/cmd/server.go index 52dba15..0f513d6 100644 --- a/cmd/server.go +++ b/cmd/server.go @@ -296,6 +296,30 @@ func handleV1BucketRead(c echo.Context) error { return c.JSON(http.StatusOK, keys) } +func handleV1DocumentCreate(c echo.Context) error { + return c.JSON(http.StatusNotImplemented, map[string]string{ + "message": "Not Implemented", + }) +} + +func handleV1DocumentRead(c echo.Context) error { + return c.JSON(http.StatusNotImplemented, map[string]string{ + "message": "Not Implemented", + }) +} + +func handleV1DocumentUpdate(c echo.Context) error { + return c.JSON(http.StatusNotImplemented, map[string]string{ + "message": "Not Implemented", + }) +} + +func handleV1DocumentDelete(c echo.Context) error { + return c.JSON(http.StatusNotImplemented, map[string]string{ + "message": "Not Implemented", + }) +} + // HTML Handlers func handleIndex(c echo.Context) error {