db_kyc_project/bot/main.py

16 lines
301 B
Python
Raw Normal View History

2024-10-28 00:04:35 +03:00
import asyncio
from loguru import logger
from wrapper import run_bot
def main():
try:
logger.info("Starting bot")
asyncio.run(run_bot())
except KeyboardInterrupt:
logger.info("Interrupted by user, shutting down")
return
if __name__ == "__main__":
main()