8 lines
289 B
Python
8 lines
289 B
Python
|
from ..utils import Struct
|
||
|
alert_observer = Struct({
|
||
|
'alert_handler': None,
|
||
|
'handle_alert': 0,
|
||
|
'types': [],
|
||
|
'num_types': 0,
|
||
|
'flags': 0
|
||
|
})
|