9 lines
195 B
Python
9 lines
195 B
Python
"""Constants for Dune HD integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
ATTR_MANUFACTURER: Final = "Dune"
|
|
DOMAIN: Final = "dunehd"
|
|
DEFAULT_NAME: Final = "Dune HD"
|