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