mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 21:49:17 +00:00
11 lines
323 B
Python
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."""
|