Update to v2.9.1

- Fix a bug that the characters have wrong values
This commit is contained in:
Lost-MSth
2022-07-13 23:05:28 +08:00
parent 210ba99606
commit 6801af197f
10 changed files with 60 additions and 71 deletions

View File

@@ -1,15 +1,8 @@
from flask import Blueprint
from setting import Config
from . import user
from . import auth
from . import friend
from . import score
from . import world
from . import purchase
from . import present
from . import others
from . import multiplayer
from . import course
from . import (auth, course, friend, multiplayer, others, present, purchase,
score, user, world)
bp = Blueprint('server', __name__, url_prefix=Config.GAME_API_PREFIX)
bp.register_blueprint(user.bp)