2.3权限管理

This commit is contained in:
YueL1331
2026-01-09 13:38:51 +08:00
parent 43f049112f
commit 9c73e25937
41 changed files with 0 additions and 60670 deletions

9
2_3banben/extensions.py Normal file
View File

@ -0,0 +1,9 @@
#extensions.py
from flask_sqlalchemy import SQLAlchemy
from flask_cors import CORS
from flask_apscheduler import APScheduler
# 这里只创建对象,不绑定 app
db = SQLAlchemy()
cors = CORS()
scheduler = APScheduler()