package v1 import ( "net/http" "github.com/labstack/echo/v4" ) type newUserResponse struct { } func (h *Handler) RegisterUser(c echo.Context) error { return c.JSON(http.StatusOK, newUserResponse{}) }