예제 #1
0
파일: appengine.go 프로젝트: lamproae/todo
func init() {
	server.RegisterHandlers()
}
예제 #2
0
파일: local.go 프로젝트: lamproae/todo
func main() {
	server.RegisterHandlers()
	http.Handle("/", http.FileServer(http.Dir("static")))
	http.ListenAndServe(":8080", nil)
}