data-manager/extensions.py

8 lines
162 B
Python
Raw Normal View History

2026-01-08 10:25:45 +08:00
from flask_cors import CORS
from flask_sqlalchemy import SQLAlchemy
from flask_jwt_extended import JWTManager
cors = CORS()
db = SQLAlchemy()
jwt = JWTManager()