Files
nginx-unit/test/python/empty/asgi.py
2020-10-01 23:55:43 +03:00

11 lines
237 B
Python

async def application(scope, receive, send):
assert scope['type'] == 'http'
await send({
'type': 'http.response.start',
'status': 200,
'headers': [
(b'content-length', b'0'),
]
})