1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-03 05:29:14 +00:00
G Johansson 917f4136a7
Add config flow to Folder Watcher ()
* 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
2024-04-23 08:55:39 +02:00

7 lines
135 B
Python

"""Constants for Folder watcher."""
CONF_FOLDER = "folder"
CONF_PATTERNS = "patterns"
DEFAULT_PATTERN = "*"
DOMAIN = "folder_watcher"