예제 #1
0
파일: phrase.go 프로젝트: astrata/tango-doc
func init() {
	app.Register("Phrase", &Phrase{})
	app.Fallback("/phrase", app.App("Phrase"))
}
예제 #2
0
// Initialization function
func init() {
	// Your initialization code goes here.
	app.Register("Static", &Static{})
	app.Fallback("/", app.App("Static"))
}
예제 #3
0
파일: data.go 프로젝트: astrata/tango-doc
func init() {
	app.Register("Data", &Data{})
	app.Route("/data", app.App("Data"))
}
예제 #4
0
파일: image.go 프로젝트: astrata/tango-doc
func init() {
	app.Register("Image", &Image{})
	app.Route("/image", app.App("Image"))
}
예제 #5
0
func init() {
	app.Register("Country", &Country{})
	app.Route("/country", app.App("Country"))
}
예제 #6
0
파일: hello.go 프로젝트: astrata/tango-doc
func init() {
	app.Register("Hello", &Hello{})
	app.Route("/", app.App("Hello"))
}
예제 #7
0
파일: static.go 프로젝트: astrata/tango-doc
func init() {
	app.Register("Static", &Static{})
	app.Fallback("/", app.App("Static"))
}
예제 #8
0
파일: build.go 프로젝트: astrata/jquery-foo
// Initialization function
func init() {
	// Your initialization code goes here.
	app.Register("Build", &Build{})
	app.Route("/", app.App("Build"))
}