xref: /unit/test/python/204_no_content/asgi.py (revision 1626:d20f04158166)
1async def application(scope, receive, send):
2    assert scope['type'] == 'http'
3
4    await send({
5        'type': 'http.response.start',
6        'status': 204,
7        'headers': [],
8    })
9