12 lines
198 B
Go
12 lines
198 B
Go
|
package dashboard
|
||
|
|
||
|
import (
|
||
|
"github.com/aerogo/aero"
|
||
|
"github.com/animenotifier/notify.moe/components"
|
||
|
)
|
||
|
|
||
|
// Get ...
|
||
|
func Get(ctx *aero.Context) string {
|
||
|
return ctx.HTML(components.Dashboard())
|
||
|
}
|