mirror of
https://github.com/home-assistant/core.git
synced 2026-08-14 09:13:06 +01:00
16 lines
403 B
Python
16 lines
403 B
Python
"""Integration for vibration triggers."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
DOMAIN = "vibration"
|
|
CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
|
|
|
|
__all__ = []
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|
"""Set up the component."""
|
|
return True
|