Files
got/handler/user.go
2024-03-03 20:29:43 -06:00

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())
}