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

11 lines
173 B
Go
Raw Normal View History

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