GameExpo23/DV8-Expo/website/extensions.py

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()