mirror of
https://github.com/home-assistant/core.git
synced 2025-05-10 08:59:18 +00:00
13 lines
235 B
Python
13 lines
235 B
Python
"""Constants for Brother integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
DATA_CONFIG_ENTRY: Final = "config_entry"
|
|
|
|
DOMAIN: Final = "brother"
|
|
|
|
PRINTER_TYPES: Final = ["laser", "ink"]
|
|
|
|
SNMP: Final = "snmp"
|