Implémenter web_handlers.WebHandler

This commit is contained in:
Victor Lacasse-Beaudoin 2023-08-30 15:24:37 -04:00
parent 4cc879ddbc
commit 098666289c
3 changed files with 30 additions and 87 deletions
api_handlers

View file

@ -252,7 +252,7 @@ func (h *V1Handler) HandleV1DocumentRead(c echo.Context) error {
}
// HandleV1DocumentUpdate permet de mettre à jour certains champs d'un object, comme le Content-Type ou le Filename
func HandleV1DocumentUpdate(c echo.Context) error {
func (h *V1Handler) HandleV1DocumentUpdate(c echo.Context) error {
return c.JSON(models.NotImplementedResponse())
}