DCSOlympus/scripts/server.py
2023-01-08 10:05:10 +01:00

8 lines
209 B
Python

try:
# Python 2
from SimpleHTTPServer import test, SimpleHTTPRequestHandler
except ImportError:
# Python 3
from http.server import test, SimpleHTTPRequestHandler
test(SimpleHTTPRequestHandler)