mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
10 lines
229 B
Go
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"))
|
|
}
|