Please no changes this time.

This commit is contained in:
2025-05-22 16:56:58 -04:00
commit 71ff41d387
11 changed files with 333 additions and 0 deletions

11
http_handlers/handler.go Normal file
View File

@@ -0,0 +1,11 @@
package http_handlers
import "github.com/labstack/echo/v4"
type Handler interface {
Get(c echo.Context) error
Post(c echo.Context) error
Put(c echo.Context) error
Delete(c echo.Context) error
Patch(c echo.Context) error
}