This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
local-llm-server/llm_server/sock.py

9 lines
108 B
Python
Raw Normal View History

2023-08-29 17:56:12 -06:00
from flask_sock import Sock
sock = Sock()
def init_socketio(app):
global sock
sock.init_app(app)