16 lines
208 B
Go
16 lines
208 B
Go
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{})
|
|
}
|