8 lines
184 B
Python
8 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"
|