htmgo/htmgo-site/pages/snippets/chat.go

11 lines
173 B
Go
Raw Normal View History

2024-10-28 15:56:03 +00:00
package snippets
import (
"github.com/maddalax/htmgo/framework/h"
)
func ChatExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &ChatSnippet)
return Index(ctx)
}