Setting up the chat client functionality using SocketIO - Start

This commit is contained in:
Josako
2024-05-15 14:37:21 +02:00
parent 6f13d72261
commit ea23e8d327
10 changed files with 165 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ from flask_security import Security
from flask_mailman import Mail
from flask_login import LoginManager
from flask_cors import CORS
from flask_socketio import SocketIO
# Create extensions
@@ -15,3 +16,4 @@ security = Security()
mail = Mail()
login_manager = LoginManager()
cors = CORS()
socketio = SocketIO()