1
0
mirror of https://github.com/blakeblackshear/frigate.git synced 2025-03-09 00:16:54 +01:00
blakeblackshear.frigate/frigate/config/tls.py

10 lines
199 B
Python
Raw Normal View History

from pydantic import Field
from .base import FrigateBaseModel
__all__ = ["TlsConfig"]
class TlsConfig(FrigateBaseModel):
enabled: bool = Field(default=True, title="Enable TLS for port 8971")