21 lines
484 B
Go
21 lines
484 B
Go
package airing
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/jobs"
|
|
)
|
|
|
|
// Get ...
|
|
func Get(ctx *aero.Context) string {
|
|
airingAnimeCache := new(jobs.AiringAnimeCache)
|
|
err := arn.GetObject("Cache", "airingAnime", airingAnimeCache)
|
|
|
|
if err != nil {
|
|
return ctx.Error(500, "Couldn't fetch airing anime", err)
|
|
}
|
|
|
|
return ctx.HTML(components.Airing(airingAnimeCache.Anime))
|
|
}
|