xempire1 / main.py
yasir68's picture
Upload folder using huggingface_hub (#1)
e26cd2e verified
raw
history blame
266 Bytes
import asyncio
from bot import launcher
from bot.config.logger import log
async def main() -> None:
await launcher.start()
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
log.info("Bot stopped by user")