You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
340 B
16 lines
340 B
from sanic import Blueprint, Request
|
|
|
|
from ..common import common_api
|
|
|
|
bp_sif_costume = Blueprint("sif_costume", url_prefix="costume")
|
|
|
|
|
|
|
|
@bp_sif_costume.route("costumeList", methods=["POST"])
|
|
@common_api
|
|
async def costumeList(request: Request):
|
|
|
|
### TODO - PLACEHOLDER ###
|
|
|
|
resp = { "costume_list": [] }
|
|
return resp |