mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Joostlek <joostlek@outlook.com>
14 lines
264 B
Python
14 lines
264 B
Python
"""Constants for the LoJack integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "lojack"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
# Default polling interval (in minutes)
|
|
DEFAULT_UPDATE_INTERVAL: Final = 5
|