aboutsummaryrefslogtreecommitdiffstats
path: root/helpers/tor.py
blob: 438cb5dab5160b3d6a3851865ceffa7b074347a9 (plain)
1
2
3
4
5
6
7
8
9
10
11

def get_tor_status():
    d = dict()
    d['state'] = 'DISABLED'
    return d

def get_tor_settings():
    return dict()

def save_tor_settings():
    pass