예제 #1
0
func main() {
	js.AddRoute("/", mainPage)
	js.RouterRun()
}
예제 #2
0
파일: app.go 프로젝트: kirillrdy/nadeshiko
func main() {
	js.AddRoute(paths.main, mainPage)
	js.AddRoute(paths.second, secondPage)
	js.RouterRun()
}