2017-10-19 21:43:42 +02: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 12:38:46 +01:00
|
|
|
return ctx.HTML(components.Database(ctx.URI()))
|
2017-10-19 21:43:42 +02:00
|
|
|
}
|