htmgo/htmgo-site/pages/examples/chat.go
2024-10-28 11:39:46 -05:00

10 lines
173 B
Go

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