2026-01-08 14:26:34 +08:00
|
|
|
#extensions.py
|
2026-01-08 13:53:19 +08:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
|
from flask_cors import CORS
|
|
|
|
|
from flask_apscheduler import APScheduler
|
|
|
|
|
|
|
|
|
|
# 这里只创建对象,不绑定 app
|
|
|
|
|
db = SQLAlchemy()
|
|
|
|
|
cors = CORS()
|
|
|
|
|
scheduler = APScheduler()
|