12 lines
195 B
Go
Raw Normal View History

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