mirror of
https://github.com/home-assistant/core.git
synced 2026-09-18 06:28:02 +01:00
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
12 lines
234 B
Python
12 lines
234 B
Python
"""Constants for Discogs."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
DOMAIN: Final = "discogs"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
DEFAULT_NAME = "Discogs"
|