niki/delivery/http_server/benefactor/kind_box_req/route.go

15 lines
410 B
Go
Raw Normal View History

package benefactorkindboxreqhandler
import (
2024-01-02 15:35:26 +00:00
echo "github.com/labstack/echo/v4"
)
func (h Handler) SetRoutes(e *echo.Echo) {
r := e.Group("/benefactor/kindboxreqs")
2024-01-02 15:35:26 +00:00
r.POST("/", h.Add).Name = "benefactor-addkindboxreq"
r.GET("/:id", h.Get).Name = "benefactor-get-kindboxreqbyid"
r.GET("/", h.GetAll).Name = "benefactor-getallkindboxreq"
r.PATCH("/:id", h.Update).Name = "benefactor-updatekindboxreq"
}