mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2025-12-14 08:06:23 +08:00
11 lines
346 B
Python
11 lines
346 B
Python
from flask import Blueprint
|
|
|
|
from . import (users, songs, token, system, items,
|
|
purchases, presents, redeems, characters, multiplay)
|
|
|
|
bp = Blueprint('api', __name__, url_prefix='/api/v1')
|
|
l = [users, songs, token, system, items, purchases,
|
|
presents, redeems, characters, multiplay]
|
|
for i in l:
|
|
bp.register_blueprint(i.bp)
|