tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

upload.py (181B)


      1 # Simply returns the request body to check if the upload succeeded.
      2 def main(request, response):
      3    return 200, [(b"Content-Type", request.headers[b'content-type'])], request.body