package handlers import ( "templ-tests/app/templates" "github.com/gin-gonic/gin" ) func Home(c *gin.Context) { templates.Home("World").Render(c, c.Writer) }