mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-09-25 20:49:08 +03:00
14 lines
333 B
Python
14 lines
333 B
Python
"""What the collectors read, gathered once per report."""
|
|
|
|
from dataclasses import dataclass, field
|
|
from typing import Any
|
|
|
|
from frigate.config import FrigateConfig
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ReportContext:
|
|
config: FrigateConfig
|
|
stats: dict[str, Any]
|
|
notice_stats: list[dict[str, Any]] = field(default_factory=list)
|