mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-29 01:09:20 +00:00
Local changes
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Spacebar.AdminAPI.TestClient.Services;
|
||||
|
||||
public class Config {
|
||||
[JsonPropertyName("api_url")]
|
||||
public string ApiUrl { get; set; } = "http://localhost:3001";
|
||||
|
||||
[JsonPropertyName("gateway_url")]
|
||||
public string GatewayUrl { get; set; } = "http://localhost:3002";
|
||||
|
||||
[JsonPropertyName("cdn_url")]
|
||||
public string CdnUrl { get; set; } = "http://localhost:3003";
|
||||
|
||||
[JsonPropertyName("admin_url")]
|
||||
public string AdminUrl { get; set; } = "http://localhost:5112";
|
||||
|
||||
[JsonPropertyName("access_token")]
|
||||
public string? AccessToken { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user