mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-05 15:16:45 +01:00
19 lines
271 B
Python
19 lines
271 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)
|
||
|
|
||
|
|