12 lines
307 B
Python
12 lines
307 B
Python
"""Constants for Bahmcloud Store."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "bahmcloud_store"
|
|
|
|
# Fixed store index URL (not user-configurable).
|
|
DEFAULT_STORE_URL = "https://git.bahmcloud.de/bahmcloud/ha_store/raw/branch/main/store.yaml"
|
|
|
|
# Config entry option keys
|
|
CONF_GITHUB_TOKEN = "github_token"
|