Add CORS headers

This commit is contained in:
Audrius Butkevicius 2015-10-22 21:44:50 +01:00
parent c885903ff2
commit 0e167f5c24
1 changed files with 1 additions and 0 deletions

View File

@ -163,6 +163,7 @@ func main() {
}
func handleRequest(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
switch r.Method {
case "GET":
if limit(r.RemoteAddr, getLRUCache, getMut, getLimit, int64(getLimitBurst)) {