mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 18:09:17 +00:00

* Add DHCP discovery subscribe websocket API * fix circular import * fixes * fixes * fixes * reduce * reduce * reduce * fix tests * fix tests * rework * tests * reduce number of lines changed * reduce
9 lines
173 B
Python
9 lines
173 B
Python
"""Constants for the dhcp integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "dhcp"
|
|
HOSTNAME: Final = "hostname"
|
|
MAC_ADDRESS: Final = "macaddress"
|
|
IP_ADDRESS: Final = "ip"
|