mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-19 09:44:52 +00:00
7 lines
167 B
Python
7 lines
167 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_caching import Cache
|
|
from flask_assets import Environment
|
|
|
|
db = SQLAlchemy()
|
|
cache = Cache()
|
|
assets = Environment()
|