14 lines
317 B
Go
Raw Normal View History

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