choose listen addr
This commit is contained in:
parent
84474f8c85
commit
87d5f2da08
BIN
goTicTactoeBot
BIN
goTicTactoeBot
Binary file not shown.
|
@ -7,12 +7,13 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"flag"
|
||||||
"log"
|
"log"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"./tictactoe"
|
"git.ventresmous.fr/gnieark/goTicTactoeBot/tictactoe"
|
||||||
)
|
)
|
||||||
|
|
||||||
//Plate somewhere to put the json encoded map
|
//Plate somewhere to put the json encoded map
|
||||||
|
@ -104,8 +105,12 @@ func arena(w http.ResponseWriter, r *http.Request){
|
||||||
|
|
||||||
}
|
}
|
||||||
func main() {
|
func main() {
|
||||||
|
var listenAddr string
|
||||||
|
flag.StringVar(&listenAddr, "listen-addr", ":5000", "server listen address")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
http.HandleFunc("/arena", arena)
|
http.HandleFunc("/arena", arena)
|
||||||
http.HandleFunc("/", parseQuery)
|
http.HandleFunc("/", parseQuery)
|
||||||
log.Fatal(http.ListenAndServe(":8080", nil))
|
log.Fatal(http.ListenAndServe(listenAddr, nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user