14 lines
365 B
Go
Raw Normal View History

2021-11-22 13:41:53 +00:00
package exportroutes
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/pages/export"
)
// Register registers the page routes.
func Register(app *aero.Application) {
2021-11-22 14:07:33 +00:00
app.Get("/user/:nick/animelist/export/csv", export.CSV)
app.Get("/user/:nick/animelist/export/txt", export.TXT)
2021-11-22 13:41:53 +00:00
app.Get("/user/:nick/animelist/export/json", export.JSON)
}