htmgo/htmgo-site/pages/discord.go

9 lines
197 B
Go
Raw Normal View History

2024-10-31 18:40:43 +00:00
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()
}