mirror of
https://github.com/jackeilles/xygt.git
synced 2024-11-08 07:52:38 +01:00
7 lines
131 B
Python
Executable file
7 lines
131 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from app import app
|
|
from waitress import serve
|
|
|
|
if __name__ == '__main__':
|
|
serve(app, listen='*:5000')
|