mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-04 21:47:28 +08:00
- Add Course Mode - Add support for downloading additional files - Add support for `skill_fatalis` (Hikari booms your world.) - Delete my hair X< > WHERE IS MY TAIRITSU ?! > Some other things are not supported now, such as... the feature which is one line above.
25 lines
670 B
Python
25 lines
670 B
Python
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
|
|
|
|
bp = Blueprint('server', __name__, url_prefix=Config.GAME_API_PREFIX)
|
|
bp.register_blueprint(user.bp)
|
|
bp.register_blueprint(auth.bp)
|
|
bp.register_blueprint(friend.bp)
|
|
bp.register_blueprint(score.bp)
|
|
bp.register_blueprint(world.bp)
|
|
bp.register_blueprint(purchase.bp)
|
|
bp.register_blueprint(present.bp)
|
|
bp.register_blueprint(others.bp)
|
|
bp.register_blueprint(multiplayer.bp)
|
|
bp.register_blueprint(course.bp)
|