コード例 #1
0
ファイル: main.go プロジェクト: kirillrdy/libkanji
func main() {

	app := gopherjs.App{PackageName: "github.com/kirillrdy/libkanji/web/client"}

	http.HandleFunc("/edict", func(response http.ResponseWriter, request *http.Request) {
		http.ServeFile(response, request, libkanji.Edict2FilePath())
	})

	app.Mount("/")

	nadeshiko.StartServer()
}
コード例 #2
0
ファイル: server.go プロジェクト: kirillrdy/gopherjs
func main() {
	app := gopherjs.App{PackageName: "github.com/kirillrdy/gopherjs/examples/hello_world"}
	app.Mount("/")

	nadeshiko.StartServer()
}