Commit 6950491b authored by Rob Pike's avatar Rob Pike

drop trailing slashes - missed comment from last review

TBR=rsc
OCL=25135
CL=25135
parent 03d6909f
......@@ -87,8 +87,8 @@ func main() {
flag.Parse();
http.Handle("/counter", new(Counter));
http.Handle("/go/", http.HandlerFunc(FileServer));
http.Handle("/flags/", http.HandlerFunc(FlagServer));
http.Handle("/args/", http.HandlerFunc(ArgServer));
http.Handle("/flags", http.HandlerFunc(FlagServer));
http.Handle("/args", http.HandlerFunc(ArgServer));
http.Handle("/go/hello", http.HandlerFunc(HelloServer));
http.Handle("/chan", ChanCreate());
err := http.ListenAndServe(":12345", nil);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment