Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Folder watcher."""
2 
3 from homeassistant.const import Platform
4 
5 CONF_FOLDER = "folder"
6 CONF_PATTERNS = "patterns"
7 DEFAULT_PATTERN = "*"
8 DOMAIN = "folder_watcher"
9 
10 PLATFORMS = [Platform.EVENT]