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.
20 lines
355 B
20 lines
355 B
6 months ago
|
from sanic import Blueprint, Request
|
||
|
|
||
|
import time
|
||
|
|
||
|
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
|