mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00

* add webmin integration 1 * refactor, add memory sensors * Fix docstring * addressed reviews * address reviews * address reviews * use translation strings for sensors * add async_abort_entries_match * apply review comments * address reviews * add async_set_unique_id * add identifiers to device_info * disable all sensors by default * move icons to icons.json * show Faults when given from server in config flow * add test for Fault * Apply review suggestions * Create helper functions for webmin instance and sorted mac addresses * fix tests
11 lines
210 B
Python
11 lines
210 B
Python
"""Constants for the Webmin integration."""
|
|
|
|
from logging import Logger, getLogger
|
|
|
|
LOGGER: Logger = getLogger(__package__)
|
|
DOMAIN = "webmin"
|
|
|
|
DEFAULT_PORT = 10000
|
|
DEFAULT_SSL = True
|
|
DEFAULT_VERIFY_SSL = False
|