mirror of
https://github.com/home-assistant/core.git
synced 2025-10-06 18:29:29 +00:00
13 lines
234 B
Python
13 lines
234 B
Python
"""Constants for the file integration."""
|
|
|
|
DOMAIN = "file"
|
|
|
|
CONF_TIMESTAMP = "timestamp"
|
|
|
|
DEFAULT_NAME = "File"
|
|
FILE_ICON = "mdi:file"
|
|
|
|
SERVICE_READ_FILE = "read_file"
|
|
ATTR_FILE_NAME = "file_name"
|
|
ATTR_FILE_ENCODING = "file_encoding"
|