9 lines
108 B
Python
9 lines
108 B
Python
|
from flask_sock import Sock
|
||
|
|
||
|
sock = Sock()
|
||
|
|
||
|
|
||
|
def init_socketio(app):
|
||
|
global sock
|
||
|
sock.init_app(app)
|