funkwhale/api/funkwhale_api/common/channels.py

6 lines
175 B
Python

from asgiref.sync import async_to_sync
from channels.layers import get_channel_layer
channel_layer = get_channel_layer()
group_send = async_to_sync(channel_layer.group_send)