htmgo/htmgo-site/pages/discord.go
2024-10-31 13:40:43 -05:00

8 lines
197 B
Go

package pages
import "github.com/maddalax/htmgo/framework/h"
func DiscordPage(ctx *h.RequestContext) *h.Page {
ctx.Redirect("https://discord.com/invite/nwQY4h6DtJ", 302)
return h.EmptyPage()
}