19 lines
408 B
Go
Raw Normal View History

2016-11-23 03:44:28 +00:00
package airing
import (
"github.com/aerogo/aero"
)
// Get ...
func Get(ctx *aero.Context) string {
2017-06-02 14:17:58 +00:00
// airingAnimeCache := new(arn.AiringAnimeCache)
// err := arn.GetObject("Cache", "airingAnime", airingAnimeCache)
2016-11-23 09:07:02 +00:00
2017-06-02 14:17:58 +00:00
// if err != nil {
// return ctx.Error(500, "Couldn't fetch airing anime", err)
// }
2016-11-23 09:07:02 +00:00
2017-06-02 14:17:58 +00:00
// return ctx.HTML(components.Airing(airingAnimeCache.Anime))
return ctx.HTML("Coming soon.")
2016-11-23 03:44:28 +00:00
}