I see the function “do_create” in the response document, but I do not see it in “sanic. response”
@app.post("/")
async def create_new(request):
    new_thing = await do_create(request)
    return json({"created": True, "id": new_thing.thing_id}, status=201)
