init commit
This commit is contained in:
commit
7ec4ee6c6f
19 changed files with 7155 additions and 0 deletions
18
main.py
Normal file
18
main.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
import asyncio
|
||||
import logging
|
||||
import sys
|
||||
|
||||
from adapters.tg import TelegramAdapter
|
||||
|
||||
|
||||
async def main():
|
||||
"""Main entry point"""
|
||||
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
|
||||
|
||||
# Initialize and start Telegram adapter
|
||||
tg_adapter = TelegramAdapter()
|
||||
await tg_adapter.start()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
Loading…
Add table
Add a link
Reference in a new issue