* Use CONF_CLIENT_ID & CONF_CLIENT_SECRET from homeassistant.const * Fix pylint * Use in tests * Search for "client_id" * Fix tests * Fix test * Fix test
7 lines
184 B
Python
7 lines
184 B
Python
"""Define constants for the Spotify integration."""
|
|
|
|
DOMAIN = "spotify"
|
|
|
|
DATA_SPOTIFY_CLIENT = "spotify_client"
|
|
DATA_SPOTIFY_ME = "spotify_me"
|
|
DATA_SPOTIFY_SESSION = "spotify_session"
|