7 lines
103 B
Python
7 lines
103 B
Python
from enum import Enum
|
|
|
|
|
|
class SeverityEnum(str, Enum):
|
|
alert = "alert"
|
|
detection = "detection"
|