Files
twitch-bot-template/scripts/start_bot.py
2025-08-01 00:05:48 +10:00

13 lines
205 B
Python

# !/bin/python3
import sys
import os
sys.path.insert(0, os.path.join(os.getcwd()))
sys.path.insert(0, os.path.join(os.getcwd(), "src"))
if __name__ == '__main__':
from bot import _main
_main()