mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-14 14:22:16 +00:00
9 lines
221 B
Python
9 lines
221 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_migrate import Migrate
|
|
from flask_caching import Cache
|
|
from flask_assets import Environment
|
|
|
|
db = SQLAlchemy()
|
|
migrate = Migrate()
|
|
cache = Cache()
|
|
assets = Environment()
|