mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
16 lines
274 B
Python
16 lines
274 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",
|
|
]
|