rewrite: Localisation scripts.

This commit is contained in:
2023-05-25 16:46:12 +03:00
parent fe8cf35885
commit 3142140849
4 changed files with 168 additions and 7 deletions

15
scripts/start_leo_debug.py Executable file
View File

@@ -0,0 +1,15 @@
# !/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()