コード例 #1
0
func main() {
	restful.Add(tictactoe.New())
	fmt.Println("Done")
	log.Fatal(http.ListenAndServe(":8080", nil))
}
コード例 #2
0
ファイル: api.go プロジェクト: MaronMariusz/goboard
func main() {
	restful.Add(tictactoe.New())
	log.Fatal(http.ListenAndServe(":8080", nil))
}