From 8b01c04a4c96e753894fdf7a1f61b686045ba31f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Bachmann?= Date: Tue, 20 Jan 2026 05:43:57 +0000 Subject: [PATCH] 0 7.0 --- custom_components/bahmcloud_store/const.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 custom_components/bahmcloud_store/const.py diff --git a/custom_components/bahmcloud_store/const.py b/custom_components/bahmcloud_store/const.py new file mode 100644 index 0000000..85bcc09 --- /dev/null +++ b/custom_components/bahmcloud_store/const.py @@ -0,0 +1,11 @@ +"""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"