hass-core/homeassistant/components/backup/const.py
Paulus Schoutsen 86891351f6
Exclude Text-to-Speech cache from backups (#127001)
Text-to-speech cache doesn't need to be included in backups.
2024-09-28 18:22:57 +02:00

17 lines
288 B
Python

"""Constants for the Backup integration."""
from logging import getLogger
DOMAIN = "backup"
LOGGER = getLogger(__package__)
EXCLUDE_FROM_BACKUP = [
"__pycache__/*",
".DS_Store",
"*.db-shm",
"*.log.*",
"*.log",
"backups/*.tar",
"OZW_Log.txt",
"tts/*",
]