Better routes splitting

This commit is contained in:
2019-09-02 08:19:10 +09:00
parent d854ef3a6a
commit 1f9e4cab47
6 changed files with 38 additions and 24 deletions

View File

@ -4,9 +4,11 @@ import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/pages/anime"
"github.com/animenotifier/notify.moe/pages/anime/editanime"
"github.com/animenotifier/notify.moe/pages/calendar"
"github.com/animenotifier/notify.moe/pages/episode"
"github.com/animenotifier/notify.moe/pages/genre"
"github.com/animenotifier/notify.moe/pages/genres"
"github.com/animenotifier/notify.moe/pages/statistics"
"github.com/animenotifier/notify.moe/utils/page"
)
@ -38,4 +40,11 @@ func Register(app *aero.Application) {
// Genres
page.Get(app, "/genres", genres.Get)
page.Get(app, "/genre/:name", genre.Get)
// Calendar
page.Get(app, "/calendar", calendar.Get)
// Statistics
page.Get(app, "/statistics", statistics.Get)
page.Get(app, "/statistics/anime", statistics.Anime)
}