Files
Grinch-AP/WebHost/run.py
2020-06-14 07:44:59 +02:00

7 lines
116 B
Python

from waitress import serve
from __init__ import app
if __name__ == "__main__":
serve(app, port=80, threads=1)