13 lines
226 B
Go
13 lines
226 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 render(c, user.Show())
|
|
}
|