12 lines
173 B
Go
12 lines
173 B
Go
|
package v1
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func (h *Handler) NewUser(c echo.Context) error {
|
||
|
return c.JSON(http.StatusOK, "not implemented yet")
|
||
|
}
|