mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
11 lines
209 B
Python
11 lines
209 B
Python
"""Integration shared constants."""
|
|
|
|
import logging
|
|
|
|
DATA_VLC = "vlc"
|
|
DATA_AVAILABLE = "available"
|
|
DEFAULT_NAME = "VLC-TELNET"
|
|
DEFAULT_PORT = 4212
|
|
DOMAIN = "vlc_telnet"
|
|
LOGGER = logging.getLogger(__package__)
|