Versions in this module Expand all Collapse all v0 v0.0.2 Oct 4, 2024 Changes in this version + func Register(e *echo.Echo, db *gorm.DB) + type CreateRequest struct + Task string + type CustomValidator struct + func (cv *CustomValidator) Validate(i interface{}) error + type DeleteRequest struct + ID int + type Error struct + Code string + Message string + type FindRequest struct + ID int + type Handler struct + func (h Handler) MustBind(c echo.Context, req interface{}) error + type HealthHandler interface + Healthz func(c echo.Context) error + func NewHealth() HealthHandler + type ResponseData struct + Data interface{} + type ResponseError struct + Errors []Error + type TodoHandler interface + Create func(c echo.Context) error + Delete func(c echo.Context) error + Find func(c echo.Context) error + FindAll func(c echo.Context) error + Update func(c echo.Context) error + func NewTodo(s service.Todo) TodoHandler + type UpdateRequest struct + type UpdateRequestBody struct + Status model.Status + Task string + type UpdateRequestPath struct + ID int v0.0.1 Sep 29, 2024