Airing page

This commit is contained in:
2016-11-23 12:44:28 +09:00
parent 5bd00fae0f
commit da96ad60e7
6 changed files with 41 additions and 4 deletions

View File

@ -6,6 +6,7 @@ import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/pages/airing"
"github.com/animenotifier/notify.moe/pages/anime"
"github.com/animenotifier/notify.moe/pages/dashboard"
"github.com/animenotifier/notify.moe/pages/forum"
@ -55,6 +56,7 @@ func main() {
app.Ajax("/threads/:id", threads.Get)
app.Ajax("/posts/:id", posts.Get)
app.Ajax("/user/:nick", profile.Get)
app.Ajax("/airing", airing.Get)
app.Run()
}