12 lines
195 B
Go
Raw Normal View History

2017-10-02 12:56:51 +00:00
package admin
2017-06-08 09:51:34 +00:00
2019-09-15 23:17:20 +00:00
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
)
2017-06-08 09:51:34 +00:00
2017-10-02 12:56:51 +00:00
// WebDev ...
2019-06-01 04:55:49 +00:00
func WebDev(ctx aero.Context) error {
2017-06-20 09:13:56 +00:00
return ctx.HTML(components.WebDev())
2017-06-08 09:51:34 +00:00
}