8 lines
114 B
Python
8 lines
114 B
Python
|
"""Constants for the MPD integration."""
|
||
|
|
||
|
import logging
|
||
|
|
||
|
DOMAIN = "mpd"
|
||
|
|
||
|
LOGGER = logging.getLogger(__package__)
|