mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
17 lines
462 B
Python
17 lines
462 B
Python
"""Refoss helpers functions."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from refoss_ha.discovery import Discovery
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import singleton
|
|
|
|
|
|
@singleton.singleton("refoss_discovery_server")
|
|
async def refoss_discovery_server(hass: HomeAssistant) -> Discovery:
|
|
"""Get refoss Discovery server."""
|
|
discovery_server = Discovery()
|
|
await discovery_server.initialize()
|
|
return discovery_server
|