1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-28 13:56:28 +00:00
Files
core/homeassistant/components/radio_browser/const.py
2022-02-21 09:13:02 -08:00

8 lines
165 B
Python

"""Constants for the Radio Browser integration."""
import logging
from typing import Final
DOMAIN: Final = "radio_browser"
LOGGER = logging.getLogger(__package__)