htmgo/htmgo-site/pages/snippets/user-auth.go
2024-10-28 10:56:03 -05:00

10 lines
181 B
Go

package snippets
import (
"github.com/maddalax/htmgo/framework/h"
)
func UserAuthExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &UserAuthSnippet)
return Index(ctx)
}