newsbox/actions/legal.go
Adriano Caloiaro 8ae801ae5f
Initial commit
2023-02-15 08:57:48 -08:00

10 lines
229 B
Go

package actions
import (
"github.com/gobuffalo/buffalo"
)
// TOSHanlder serves the terms of service
func TOSHandler(c buffalo.Context) error {
return c.Render(200, r.HTML("legal/index.plush.md", "plain_layout.plush.html"))
}