Added basic AMV routes

This commit is contained in:
2018-04-14 23:23:00 +02:00
parent 854833c586
commit d19542b5aa
6 changed files with 65 additions and 3 deletions

8
pages/amv/amv.go Normal file
View File

@ -0,0 +1,8 @@
package amv
import "github.com/aerogo/aero"
// Get a single AMV.
func Get(ctx *aero.Context) string {
return ctx.HTML("Coming soon™.")
}