mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 05:29:14 +00:00

* Add config flow to Folder Watcher * Add tests config flow * docstrings * watcher is sync * Fix strings * Fix * setup_entry issue * ConfigFlowResult * Review comments * Review comment * ruff * new date
7 lines
135 B
Python
7 lines
135 B
Python
"""Constants for Folder watcher."""
|
|
|
|
CONF_FOLDER = "folder"
|
|
CONF_PATTERNS = "patterns"
|
|
DEFAULT_PATTERN = "*"
|
|
DOMAIN = "folder_watcher"
|