mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-15 07:35:27 +03:00
8 lines
149 B
Python
8 lines
149 B
Python
from enum import Enum
|
|
|
|
|
|
class SeverityEnum(str, Enum):
|
|
alert = "alert"
|
|
detection = "detection"
|
|
significant_motion = "significant_motion"
|