Added database search

This commit is contained in:
2017-10-19 21:43:42 +02:00
parent 24914cb6ff
commit da4e026f41
7 changed files with 270 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package database
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
)
// Get the dashboard.
func Get(ctx *aero.Context) string {
return ctx.HTML(components.Database())
}