Use new endpoint for can load client

This commit is contained in:
2026-01-23 23:34:28 -07:00
parent 8bc715df7e
commit e1cd3f25e2
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ public class Endpoints
public static readonly string BASE_URL = $"https://{HOST}/api";
public static readonly string BERRYDASH_ENDPOINT = BASE_URL + "/berrydash";
public static readonly string WS_ENDPOINT = $"ws://{HOST}:{WS_PORT}/api/ws";
public static readonly string CAN_LOAD_CLIENT_ENDPOINT = BASE_URL + "/can-load-client";
public static readonly string LATEST_VERSION_ENDPOINT = BERRYDASH_ENDPOINT + "/latest-version";
public static readonly string LEADERBOARDS_ENDPOINT = BERRYDASH_ENDPOINT + "/leaderboards";
public static readonly string LEADERBOARDS_SCORE_ENDPOINT = LEADERBOARDS_ENDPOINT + "/score";