Files
Grinch-AP/WebHost/run.py

7 lines
116 B
Python
Raw Normal View History

2020-06-14 07:44:59 +02:00
from waitress import serve
from __init__ import app
if __name__ == "__main__":
serve(app, port=80, threads=1)