21 lines
415 B
Go
Raw Normal View History

2017-06-30 23:16:25 +00:00
package explore
2017-06-20 20:54:45 +00:00
import (
"github.com/aerogo/aero"
)
2017-07-01 00:14:14 +00:00
// Get ...
2017-06-20 20:54:45 +00:00
func Get(ctx *aero.Context) string {
2017-10-27 07:11:56 +00:00
// var cache arn.ListOfIDs
// err := arn.DB.GetObject("Cache", "airing anime", &cache)
2017-07-01 00:14:14 +00:00
2017-10-27 07:11:56 +00:00
// airing, err := arn.GetAiringAnimeCached()
2017-06-23 22:12:05 +00:00
2017-10-27 07:11:56 +00:00
// if err != nil {
// return ctx.Error(500, "Couldn't fetch airing anime", err)
// }
2017-06-23 22:12:05 +00:00
2017-10-27 07:11:56 +00:00
// return ctx.HTML(components.Airing(airing))
return ctx.HTML("Not implemented")
2017-06-20 20:54:45 +00:00
}