mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 08:48:13 +00:00
9 lines
202 B
Python
Executable File
9 lines
202 B
Python
Executable File
#!/usr/bin/env python3
|
|
from lib.server.job_server import start_server
|
|
|
|
import ssl
|
|
ssl.OPENSSL_VERSION = ssl.OPENSSL_VERSION.replace("LibreSSL", "OpenSSL")
|
|
|
|
if __name__ == '__main__':
|
|
start_server()
|