mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-05 06:37:28 +08:00
- Add API endpoints for presents - Change character value algorithm - Update character values (I forgot in v2.10.3)
13 lines
388 B
Python
13 lines
388 B
Python
from flask import Blueprint
|
|
|
|
from . import (users, songs, token, system, items, purchases, presents)
|
|
|
|
bp = Blueprint('api', __name__, url_prefix='/api/v1')
|
|
bp.register_blueprint(users.bp)
|
|
bp.register_blueprint(songs.bp)
|
|
bp.register_blueprint(token.bp)
|
|
bp.register_blueprint(system.bp)
|
|
bp.register_blueprint(items.bp)
|
|
bp.register_blueprint(purchases.bp)
|
|
bp.register_blueprint(presents.bp)
|