예제 #1
0
파일: api.py 프로젝트: rain298/blog-sanic
async def delete(request, id):
    status, data, msgs = Article.mixin_delete_one(dict(id=id))
    return jsonResponse(status, data, msgs)