Files
croccybot/scripts/start_leo_debug.py

16 lines
245 B
Python
Executable File

# !/bin/python3
import sys
import os
import tracemalloc
tracemalloc.start()
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()