13 lines
259 B
Go
13 lines
259 B
Go
package handler
|
|
|
|
import (
|
|
"gitea.sitodosi.com/betology/got/view/user"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
type UserHandler struct{}
|
|
|
|
func (h UserHandler) HandlerUserShow(c echo.Context) error {
|
|
return user.Show().Render(c.Request().Context(), c.Response())
|
|
}
|