diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-21 09:30:40 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-21 09:30:40 +0100 |
commit | 96f56b2154195191132fb43c5b27f0a7c2ce1bb6 (patch) | |
tree | a698c06ab5beac7bc65fb22529f7134aa2533b9c /api/socket_io.py | |
parent | e1978a9b80f3f7f5a36ca4af5f6df62f494a0d6d (diff) |
working game-id's
Diffstat (limited to 'api/socket_io.py')
-rw-r--r-- | api/socket_io.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/socket_io.py b/api/socket_io.py new file mode 100644 index 0000000..b80e12e --- /dev/null +++ b/api/socket_io.py @@ -0,0 +1,5 @@ +from flask_socketio import SocketIO +from app import app + +io = SocketIO(app, cors_allowed_origins="*") + |