X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/549a590ff61432e3148005a31bcc2d1b663ab4e1..67dc084dd8db67bda9551dc9856638353b4ed692:/server/server.go diff --git a/server/server.go b/server/server.go index 74e116f..0c40784 100644 --- a/server/server.go +++ b/server/server.go @@ -154,7 +154,7 @@ func start_server(store Store) { }) http.HandleFunc("/robots.txt", func(w http.ResponseWriter, r *http.Request) { - w.Write([]byte(robots_txt)); + w.Write([]byte(robots_txt)) }) log.Fatal(http.ListenAndServe(*localaddress+":"+strconv.Itoa(*port), nil))