TamTam: websocket transport for web version

This commit is contained in:
Alexey Polyakov
2026-03-27 19:00:14 +03:00
parent ac76015d08
commit 7a2e5a20d6
7 changed files with 193 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
# Импортирование библиотек
import ssl, logging, asyncio
from common.config import ServerConfig
from oneme.controller import OnemeMobileController
from oneme.controller import OnemeController
from telegrambot.controller import TelegramBotController
from tamtam.controller import TTMobileController
from tamtam.controller import TTController
# Конфиг сервера
server_config = ServerConfig()
@@ -72,8 +72,8 @@ async def main():
}
controllers = {
"oneme_mobile": OnemeMobileController(),
"tamtam_mobile": TTMobileController(),
"oneme": OnemeController(),
"tamtam": TTController(),
"telegrambot": TelegramBotController()
}