11 lines
140 B
Go
11 lines
140 B
Go
package amvs
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
)
|
|
|
|
// Get AMVs.
|
|
func Get(ctx *aero.Context) string {
|
|
return ctx.HTML("Coming soon™.")
|
|
}
|