mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-04-10 16:20:59 +00:00
13 lines
439 B
Python
13 lines
439 B
Python
async def websocket_application(scope, receive, send):
|
|
while True:
|
|
event = await receive()
|
|
|
|
if event["type"] == "websocket.connect":
|
|
await send({"type": "websocket.accept"})
|
|
|
|
if event["type"] == "websocket.disconnect":
|
|
break
|
|
|
|
if event["type"] == "websocket.receive":
|
|
if event["text"] == "ping":
|
|
await send({"type": "websocket.send", "text": "pong!"})
|