niki/delivery/http/V1/piggy_bank/new.go

14 lines
204 B
Go
Raw Normal View History

2023-12-16 06:09:50 +00:00
package deliverypiggybank
import (
"github.com/labstack/echo/v4"
"net/http"
)
func NewPiggyBank() echo.HandlerFunc {
return func(c echo.Context) error {
return c.JSON(http.StatusCreated, "")
}
}