Apparently tabs are A Thing

This commit is contained in:
Kegan Dougal 2015-09-17 15:49:01 +01:00
parent 9b18fd252e
commit 9c3a333a6d

View file

@ -56,7 +56,7 @@ func main() {
go doPopulate(ch, dir) go doPopulate(ch, dir)
go watchFS(ch, w) go watchFS(ch, w)
fmt.Printf("Listening on port %d\n", *port) fmt.Printf("Listening on port %d\n", *port)
http.HandleFunc("/", serve) http.HandleFunc("/", serve)
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), nil)) log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), nil))