8 lines
165 B
Python
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__)
|