forked from r4sas/PBinCLI
12 lines
230 B
Python
12 lines
230 B
Python
def init():
|
|
global server, proxies, useproxy
|
|
|
|
# Edit that variables
|
|
server = "https://paste.i2pd.xyz/"
|
|
proxy = "socks5://127.0.0.1:9050"
|
|
|
|
# True/False
|
|
useproxy = False
|
|
|
|
# There is nothing more to do :D
|