basic sample done

This commit is contained in:
Beto
2024-03-03 20:29:43 -06:00
parent b18b316775
commit 90c76a12af
6 changed files with 55 additions and 6 deletions

View File

@@ -8,5 +8,5 @@ import (
type UserHandler struct{}
func (h UserHandler) HandlerUserShow(c echo.Context) error {
return user.Show().Render(c.Request().Context(), c.Response())
return render(c, user.Show())
}