Add Radio Browser integration (#66950)

This commit is contained in:
Franck Nijhof 2022-02-21 18:13:02 +01:00 committed by GitHub
parent 660fb393f0
commit d839febbe7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 531 additions and 5 deletions

View file

@ -0,0 +1,7 @@
"""Constants for the Radio Browser integration."""
import logging
from typing import Final
DOMAIN: Final = "radio_browser"
LOGGER = logging.getLogger(__package__)