refactor voice_bot

This commit is contained in:
Andrey
2024-11-14 00:05:37 +03:00
parent 5c3fece394
commit 767acacc18
12 changed files with 341 additions and 329 deletions

9
voice_bot_v2.py Normal file
View File

@@ -0,0 +1,9 @@
import asyncio
from helper_bot.utils.base_dependency_factory import BaseDependencyFactory
from voice_bot.main import start_bot
bdf = BaseDependencyFactory()
if __name__ == '__main__':
asyncio.run(start_bot(BaseDependencyFactory()))