xref: /unit/test/python/empty/asgi.py (revision 1848:4bd548074e2c)
1async def application(scope, receive, send):
2    assert scope['type'] == 'http'
3
4    await send(
5        {
6            'type': 'http.response.start',
7            'status': 200,
8            'headers': [(b'content-length', b'0')],
9        }
10    )
11