8 lines
160 B
Python
8 lines
160 B
Python
from app import create_app, sIO
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == "__main__":
|
|
print("Starting server...")
|
|
sIO.run(app, debug=True, use_reloader=True)
|