MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / do_OPTIONS

Method do_OPTIONS

service/server.py:16–19  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

14# https://github.com/fuzzysteve/CREST-Market-Downloader/
15class AuthHandler(http.server.BaseHTTPRequestHandler):
16 def do_OPTIONS(self):
17 self.send_response(200)
18 self.send_header('Access-Control-Allow-Origin', '*')
19 self.end_headers()
20
21 def do_GET(self):
22 if self.path == "/favicon.ico":

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected