Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. if req.Method == "OPTIONS" {
  2. // Handle OPTIONS requests
  3. if r.HandleOPTIONS {
  4. if allow := r.allowed(path, req.Method); len(allow) > 0 {
  5. w.Header().Set("Allow", allow)
  6. return
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement