mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-24 01:06:06 +01: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"
|