mirror of https://github.com/home-assistant/core
13 lines
343 B
Python
13 lines
343 B
Python
"""LinkPlay constants."""
|
|
|
|
from linkplay.controller import LinkPlayController
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
DOMAIN = "linkplay"
|
|
CONTROLLER = "controller"
|
|
CONTROLLER_KEY: HassKey[LinkPlayController] = HassKey(CONTROLLER)
|
|
PLATFORMS = [Platform.MEDIA_PLAYER]
|
|
DATA_SESSION = "session"
|