6 lines
116 B
Python
6 lines
116 B
Python
import netcontroller
|
|
|
|
def has_tor():
|
|
if netcontroller.tor_binary() is None:
|
|
return False
|
|
return True |