mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-05 06:07:58 +08:00
- Code refactoring mainly for API - Delete a useless option in `setting.py` - Change some constants in Link Play mode
11 lines
240 B
Python
11 lines
240 B
Python
from flask import Blueprint
|
|
|
|
from . import users
|
|
from . import songs
|
|
from . import token
|
|
|
|
bp = Blueprint('api', __name__, url_prefix='/api/v1')
|
|
bp.register_blueprint(users.bp)
|
|
bp.register_blueprint(songs.bp)
|
|
bp.register_blueprint(token.bp)
|