Added CSV export

This commit is contained in:
2021-11-22 23:07:33 +09:00
parent 093385b153
commit a9ba01e610
4 changed files with 54 additions and 4 deletions

View File

@ -7,6 +7,7 @@ import (
// Register registers the page routes.
func Register(app *aero.Application) {
app.Get("/user/:nick/animelist/export/text", export.Text)
app.Get("/user/:nick/animelist/export/csv", export.CSV)
app.Get("/user/:nick/animelist/export/txt", export.TXT)
app.Get("/user/:nick/animelist/export/json", export.JSON)
}