What is "do_create" in Sanic.response?

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)

It’s only an example of a function where an object is being created. Nothing directly related to Sanic.

ok, thanks.
So is it a Sanic.response instance?

No. It’s an async function.

It is anything you want it to be.

ooh! thanks, i got it

ooh! thanks, i got it.