12 lines
197 B
Go
12 lines
197 B
Go
package terms
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
)
|
|
|
|
// Get ...
|
|
func Get(ctx aero.Context) error {
|
|
return ctx.HTML(components.TermsOfService())
|
|
}
|