mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
bbbb3b4a06
* Replace logging.warn with logging.warning * Install config global state early * Split config.py into more manageable pieces
16 lines
555 B
Python
16 lines
555 B
Python
from frigate.detectors import DetectorConfig, ModelConfig # noqa: F401
|
|
|
|
from .auth import * # noqa: F403
|
|
from .camera import * # noqa: F403
|
|
from .camera_group import * # noqa: F403
|
|
from .config import * # noqa: F403
|
|
from .database import * # noqa: F403
|
|
from .logger import * # noqa: F403
|
|
from .mqtt import * # noqa: F403
|
|
from .notification import * # noqa: F403
|
|
from .proxy import * # noqa: F403
|
|
from .semantic_search import * # noqa: F403
|
|
from .telemetry import * # noqa: F403
|
|
from .tls import * # noqa: F403
|
|
from .ui import * # noqa: F403
|