(self)
| 14 | # https://github.com/fuzzysteve/CREST-Market-Downloader/ |
| 15 | class 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": |
nothing calls this directly
no outgoing calls
no test coverage detected