11 lines
270 B
Python
11 lines
270 B
Python
|
import subprocess
|
||
|
from utils import global_vars
|
||
|
import time
|
||
|
from qwiklabs import get_google_account
|
||
|
from shell import shell
|
||
|
from shell.gists.gists import UserBot
|
||
|
|
||
|
print("[MAIN] Entering main script!")
|
||
|
s = shell.Shell()
|
||
|
s.start()
|
||
|
s.execute_python_custom_script(UserBot())
|