mirror of
https://github.com/sudoxnym/fin-assistant.git
synced 2026-04-14 19:46:26 +00:00
15 lines
No EOL
293 B
Python
15 lines
No EOL
293 B
Python
"""Constants for the jellyfin integration."""
|
|
|
|
DOMAIN = "jellyfin"
|
|
SIGNAL_STATE_UPDATED = "{}.updated".format(DOMAIN)
|
|
|
|
DEFAULT_SSL = False
|
|
DEFAULT_VERIFY_SSL = True
|
|
DEFAULT_PORT = 8096
|
|
|
|
CONN_TIMEOUT = 5.0
|
|
|
|
STATE_PLAYING = 'Playing'
|
|
STATE_PAUSED = 'Paused'
|
|
STATE_IDLE = 'Idle'
|
|
STATE_OFF = 'Off' |