Update comments

This commit is contained in:
William Dunne 2015-11-01 23:29:51 +00:00
parent 773808209f
commit 75260b9279
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ var upgrader = websocket.Upgrader{
CheckOrigin: func(r *http.Request) bool {
return true
},
} // use default options, except origin. Allows cross-origin requests for testing.
} /* use default options, except origin. Allows cross-origin requests for testing.
Presents a security risk if run in production */
func echo(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/" {