16 lines
379 B
Python
16 lines
379 B
Python
from pydantic import Field
|
|
|
|
from frigate.const import DEFAULT_DB_PATH
|
|
|
|
from .base import FrigateBaseModel
|
|
|
|
__all__ = ["DatabaseConfig"]
|
|
|
|
|
|
class DatabaseConfig(FrigateBaseModel):
|
|
path: str = Field(
|
|
default=DEFAULT_DB_PATH,
|
|
title="Database path",
|
|
description="Filesystem path where the Frigate SQLite database file will be stored.",
|
|
) # noqa: F821
|