feat: creating chats for cards and clients, sending and deleting text messages

This commit is contained in:
2025-03-27 15:13:10 +04:00
parent a466e46f28
commit 2cdccb33ca
25 changed files with 928 additions and 7 deletions

5
external/kafka/producer.py vendored Normal file
View File

@@ -0,0 +1,5 @@
from aiokafka import AIOKafkaProducer
from backend.config import KAFKA_URL
producer = AIOKafkaProducer(bootstrap_servers=KAFKA_URL)