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