Skip to content

Instantly share code, notes, and snippets.

@susmithagudapati
Created April 18, 2020 21:41
Show Gist options
  • Save susmithagudapati/2aae9a1b13958d7b4c6d0ebe8406d1be to your computer and use it in GitHub Desktop.
Save susmithagudapati/2aae9a1b13958d7b4c6d0ebe8406d1be to your computer and use it in GitHub Desktop.
async def application(scope, receive, send):
await send({"type": "http.response.start", "status": 200, "headers": [(b"Content-Type", "text/plain")]})
await send({"type": "http.response.body", "body": b"Hello World"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment