コード例 #1
0
ファイル: remoteserver.go プロジェクト: tardisgo/tgoremote
func main() {
	tgohttp.Setup("/_haxeRPC_")
	http.Handle("/client/", http.StripPrefix("/client/", http.FileServer(http.Dir("../client"))))
	example.Register()
	go example.RRPC()
	println("Tgo remote webserver running on port 8088")
	log.Fatal(http.ListenAndServe("localhost:8088", nil))
}
コード例 #2
0
ファイル: localserver.go プロジェクト: tardisgo/tgoremote
func main() {
	example.Register()
	go example.RRPC()
	C.hxmain()
}