functions: 0.0.20

0.0.1 release
This commit is contained in:
Travis Reeder
2016-07-14 09:19:06 -07:00
parent c73dd4dd42
commit 417b109e9c

View File

@@ -44,7 +44,7 @@ var config struct {
}
}
const Version = "0.0.19"
const Version = "0.0.20"
//var routingTable = map[string]*Route{}
var icache = cache.New("routing-table")
@@ -113,7 +113,7 @@ func main() {
http.Handle("/", r)
port := 8080
log.Infoln("Router started, listening and serving on port", port)
log.Fatal(http.ListenAndServe(fmt.Sprintf("0.0.0.0:%v", port), nil))
log.Fatal(http.ListenAndServe(fmt.Sprintf("0.0.1.0:%v", port), nil))
}
type NewApp struct{}