mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
10 lines
199 B
Python
10 lines
199 B
Python
|
from pydantic import Field
|
||
|
|
||
|
from .base import FrigateBaseModel
|
||
|
|
||
|
__all__ = ["TlsConfig"]
|
||
|
|
||
|
|
||
|
class TlsConfig(FrigateBaseModel):
|
||
|
enabled: bool = Field(default=True, title="Enable TLS for port 8971")
|