init commit

This commit is contained in:
草师傅 2025-07-30 21:40:15 +08:00
commit 7ec4ee6c6f
19 changed files with 7155 additions and 0 deletions

18
main.py Normal file
View 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())