Skip to content

Commit

Permalink
Update webserver.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BoQsc committed Aug 1, 2024
1 parent efce231 commit e81c945
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webserver/Webserver/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
import sys; sys.dont_write_bytecode = True
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer

if sys.stderr is None:
import io
sys.stderr = io.StringIO()

class RedirectHandler(BaseHTTPRequestHandler):
def do_GET(self):
#html_content = """
Expand Down

0 comments on commit e81c945

Please sign in to comment.