mirror of
https://github.com/home-assistant/core.git
synced 2025-05-06 15:09:17 +00:00
10 lines
208 B
Python
10 lines
208 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__)
|