mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 04:07:51 +00:00
13 lines
232 B
Python
13 lines
232 B
Python
"""Constants for the Skybell HD Doorbell."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
DEFAULT_NAME = "SkyBell"
|
|
DOMAIN: Final = "skybell"
|
|
|
|
IMAGE_AVATAR = "avatar"
|
|
IMAGE_ACTIVITY = "activity"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|