mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-05-14 07:32:15 +00:00
9 lines
252 B
Python
9 lines
252 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_migrate import Migrate
|
|
from flask_assets import Environment
|
|
from flask_caching import Cache
|
|
|
|
db = SQLAlchemy()
|
|
migrate = Migrate()
|
|
assets = Environment()
|
|
cache = Cache(config={'CACHE_TYPE': 'simple'})
|