* update service domain for local_file from camera to local_file * remove service.yaml entry in camera component as part of change * fix test * move constants to const.py * add local_file/const.py to .coveragerc * remove local_file/const.py from .coveragerc since component has tests
6 lines
217 B
Python
6 lines
217 B
Python
"""Constants for the Local File Camera component."""
|
|
DOMAIN = "local_file"
|
|
SERVICE_UPDATE_FILE_PATH = "update_file_path"
|
|
CONF_FILE_PATH = "file_path"
|
|
DATA_LOCAL_FILE = "local_file_cameras"
|
|
DEFAULT_NAME = "Local File"
|