1
0
mirror of https://github.com/home-assistant/core.git synced 2025-07-27 23:27:37 +00:00
2022-03-31 14:18:45 +02:00

11 lines
323 B
Python

"""Backup platform for the NEW_NAME integration."""
from homeassistant.core import HomeAssistant
async def async_pre_backup(hass: HomeAssistant) -> None:
"""Perform operations before a backup starts."""
async def async_post_backup(hass: HomeAssistant) -> None:
"""Perform operations after a backup finishes."""