Fixing build issues

This commit is contained in:
MichaelOultram 2015-07-28 22:05:49 +01:00
parent 5d68fc57b7
commit 7375b4174a

2
web.go
View file

@ -19,7 +19,7 @@ var external_ip = ""
func Webserver() {
http.HandleFunc("/", homepage)
http.HandleFunc("/add", addSong)
http.ListenAndServe(":80", nil)
http.ListenAndServe(":9563", nil)
rand.Seed(time.Now().UnixNano())
}