setup done

This commit is contained in:
Beto
2024-03-03 19:55:13 -06:00
parent 89b7c07023
commit 4327e9fc8d
6 changed files with 76 additions and 0 deletions

12
handler/user.go Normal file
View File

@@ -0,0 +1,12 @@
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())
}