12 lines
229 B
Go
12 lines
229 B
Go
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
|
|
}
|