mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 10:27:52 +00:00
12 lines
243 B
Python
12 lines
243 B
Python
"""Constants for Snapcast."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
PLATFORMS: list[Platform] = [Platform.MEDIA_PLAYER]
|
|
|
|
CLIENT_PREFIX = "snapcast_client_"
|
|
CLIENT_SUFFIX = "Snapcast Client"
|
|
|
|
DOMAIN = "snapcast"
|
|
DEFAULT_TITLE = "Snapcast"
|