Fixing build issues

This commit is contained in:
MichaelOultram 2015-07-28 14:59:03 +01:00
parent c17ff088e3
commit 4d84965026

2
web.go
View file

@ -31,5 +31,5 @@ func handler(w http.ResponseWriter, r *http.Request) {
func Webserver(){ func Webserver(){
http.HandleFunc("/", handler) http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil) http.ListenAndServe(":80", nil)
} }