Add highscores server

This commit is contained in:
Michał Gdula 2023-05-03 20:08:09 +03:00
parent 0d28b50944
commit b6dc53dfaa
10 changed files with 192 additions and 6 deletions

View file

@ -0,0 +1,7 @@
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_caching import Cache
db = SQLAlchemy()
migrate = Migrate()
cache = Cache()