mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 01:40:07 +03:00
14 lines
473 B
Python
14 lines
473 B
Python
import json
|
|
import asyncio
|
|
import traceback
|
|
from channels.generic.websocket import AsyncWebsocketConsumer
|
|
from channels.db import database_sync_to_async
|
|
from django.core.cache import cache
|
|
from django.core.exceptions import ValidationError
|
|
from asgiref.sync import sync_to_async
|
|
from core.models import ChatMessage
|
|
from users.services import check_chat_badges
|
|
# from .models import WatchParty # Removed
|
|
|
|
# WatchPartyConsumer removed. Use apps.watchparty.consumers instead.
|