mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-16 10:16:48 +01:00
17 lines
269 B
Python
17 lines
269 B
Python
rules_address_args = [
|
|
'input',
|
|
'output',
|
|
'exec',
|
|
'address',
|
|
]
|
|
|
|
rules_data_args = [
|
|
'data',
|
|
'data_in',
|
|
]
|
|
|
|
|
|
def to_config_names(v):
|
|
v = v.upper()
|
|
return ('ETHMONITOR_' + v, 'ETHMONITOR_X_' + v)
|