CoolFace
Apppublic

misza222/docker-test

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
main.py14 linesDownload Raw Back to root
1async def app(scope, receive, send):2    assert scope['type'] == 'http'3 4    await send({5        'type': 'http.response.start',6        'status': 200,7        'headers': [8            [b'content-type', b'text/plain'],9        ],10    })11    await send({12        'type': 'http.response.body',13        'body': b'Hello, world!',14    })