You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
463 B
15 lines
463 B
from configloader import load_config, get_config
|
|
|
|
def getKeys():
|
|
key_list = ['port', 'u', 'd', 'transfer_enable', 'passwd', 'enable' ]
|
|
if get_config().API_INTERFACE == 'sspanelv3':
|
|
key_list += ['method']
|
|
elif get_config().API_INTERFACE == 'sspanelv3ssr':
|
|
key_list += ['method', 'obfs', 'protocol']
|
|
return key_list
|
|
#return key_list + ['plan'] # append the column name 'plan'
|
|
|
|
def isTurnOn(row):
|
|
return True
|
|
#return row['plan'] == 'B' # then judge here
|
|
|
|
|