blakeblackshear.frigate/frigate/config/camera/__init__.py
gtsiam bbbb3b4a06
Split config.py into multiple files (#14038)
* Replace logging.warn with logging.warning

* Install config global state early

* Split config.py into more manageable pieces
2024-09-28 14:21:42 -05:00

18 lines
608 B
Python

from .audio import * # noqa: F403
from .birdseye import * # noqa: F403
from .camera import * # noqa: F403
from .detect import * # noqa: F403
from .ffmpeg import * # noqa: F403
from .genai import * # noqa: F403
from .live import * # noqa: F403
from .motion import * # noqa: F403
from .mqtt import * # noqa: F403
from .objects import * # noqa: F403
from .onvif import * # noqa: F403
from .record import * # noqa: F403
from .review import * # noqa: F403
from .snapshots import * # noqa: F403
from .timestamp import * # noqa: F403
from .ui import * # noqa: F403
from .zone import * # noqa: F403