mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00

* Add config flow to pyLoad integration * address issues * remove suggested values * Fix exception * abort import flow on error * readd repair issues on error * fix ruff * changes * changes * exception hints
10 lines
216 B
Python
10 lines
216 B
Python
"""Constants for the pyLoad integration."""
|
|
|
|
DOMAIN = "pyload"
|
|
|
|
DEFAULT_HOST = "localhost"
|
|
DEFAULT_NAME = "pyLoad"
|
|
DEFAULT_PORT = 8000
|
|
|
|
ISSUE_PLACEHOLDER = {"url": "/config/integrations/dashboard/add?domain=pyload"}
|