7 lines
97 B
Python
7 lines
97 B
Python
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.join(os.getcwd(), "bot"))
|
|
|
|
from bot import main
|