mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
8 lines
209 B
Python
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) |