restructuring default endpoints

This commit is contained in:
2025-03-19 12:57:55 +01:00
parent 29e53b89d4
commit 08d1aa35e6
@@ -34,14 +34,14 @@ ENDPOINTS: dict[int: Endpoint] = { # for now make sure, .id and key are the same
ENDPOINT_GROUPS: dict[int:EndpointGroup] = { # for now make sure , .id and key are the same
0: EndpointGroup(
id=0,
name="Gate1",
name="Local Group",
languages=["deu", "eng"],
endpoints=[ENDPOINTS[0]],
),
1: EndpointGroup(
id=1,
name="Gate2",
languages=["deu", "eng", "fra"],
name="Gate1",
languages=["deu", "fra"],
endpoints=[ENDPOINTS[1]],
)
}