12 lines
216 B
Go
Raw Normal View History

2017-10-19 19:43:42 +00:00
package database
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
)
// Get the dashboard.
func Get(ctx *aero.Context) string {
2018-03-09 11:38:46 +00:00
return ctx.HTML(components.Database(ctx.URI()))
2017-10-19 19:43:42 +00:00
}