listen on all ips

pull/432/merge
Darien Raymond 2017-04-17 14:06:02 +02:00
parent cdcf72cbe7
commit bf64c449de
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ import "net/http"
func init() {
go func() {
http.ListenAndServe("localhost:6060", nil)
http.ListenAndServe(":6060", nil)
}()
}