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.

13 lines
241 B

from sanic import Blueprint, Request
from .common import common_api
bp_sif_name = Blueprint("sif_name", url_prefix="name")
@bp_sif_name.route("", methods=["POST"])
@common_api
async def _(request: Request):
resp = {}
return resp