progresses on #49

This commit is contained in:
Henrique Dias
2016-03-06 14:23:37 +00:00
parent bec1c3c510
commit b97ef80596
7 changed files with 78 additions and 12 deletions

View File

@@ -19,6 +19,6 @@ func ServeHTTP(w http.ResponseWriter, r *http.Request, c *config.Config) (int, e
case "GET":
return GET(w, r, c, filename)
default:
return 400, errors.New("Invalid method.")
return http.StatusMethodNotAllowed, errors.New("Invalid method.")
}
}