Example #1
0
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))
}
Example #2
0
func main() {
	example.Register()
	go example.RRPC()
	C.hxmain()
}