mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
11 lines
207 B
Python
11 lines
207 B
Python
"""Constants for Folder watcher."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
CONF_FOLDER = "folder"
|
|
CONF_PATTERNS = "patterns"
|
|
DEFAULT_PATTERN = "*"
|
|
DOMAIN = "folder_watcher"
|
|
|
|
PLATFORMS = [Platform.EVENT]
|