// Initialization function func init() { // Your initialization code goes here. app.Register("Static", &Static{}) app.Fallback("/", app.App("Static")) }
func init() { app.Register("Phrase", &Phrase{}) app.Fallback("/phrase", app.App("Phrase")) }
func init() { app.Register("Static", &Static{}) app.Fallback("/", app.App("Static")) }