Tomarket / main.py
yasir68's picture
Upload folder using huggingface_hub (#1)
4e9b253 verified
raw
history blame
222 Bytes
import asyncio
from contextlib import suppress
from bot.utils.launcher import process
async def main():
await process()
if __name__ == '__main__':
with suppress(KeyboardInterrupt):
asyncio.run(main())