14 lines
322 B
Go
Raw Normal View History

2017-07-07 10:57:48 +02:00
package statistics
import (
"github.com/aerogo/aero"
)
// Anime ...
func Anime(ctx *aero.Context) string {
2017-10-27 09:11:56 +02:00
// statistics := arn.StatisticsCategory{}
// arn.DB.GetObject("Cache", "anime statistics", &statistics)
// return ctx.HTML(components.Statistics(statistics.PieCharts...))
return ctx.HTML("Not implemented")
2017-07-07 10:57:48 +02:00
}