mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-08 16:57:26 +08:00
[Enhance] API for redeem
- Add API endpoints for redeem system
- Continue to fix the bug mentioned in 930faf508d
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from flask import Blueprint
|
||||
|
||||
from . import (users, songs, token, system, items, purchases, presents)
|
||||
from . import (users, songs, token, system, items,
|
||||
purchases, presents, redeems)
|
||||
|
||||
bp = Blueprint('api', __name__, url_prefix='/api/v1')
|
||||
bp.register_blueprint(users.bp)
|
||||
@@ -10,3 +11,4 @@ bp.register_blueprint(system.bp)
|
||||
bp.register_blueprint(items.bp)
|
||||
bp.register_blueprint(purchases.bp)
|
||||
bp.register_blueprint(presents.bp)
|
||||
bp.register_blueprint(redeems.bp)
|
||||
|
||||
Reference in New Issue
Block a user