Files
HoshiNoTama/scripts/start_bot.py
2025-07-24 03:33:42 +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()