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

11 lines
211 B
Go

package handler
import (
"github.com/a-h/templ"
"github.com/labstack/echo/v4"
)
func render(c echo.Context, component templ.Component) error {
return component.Render(c.Request().Context(), c.Response())
}