some refactoring fix some stuff add http context accessor configure metrics as well commit 713d054ccb965f7adb8eafa6e3fb52853a1e6dd2 (partial, Docker only)
13 lines
373 B
C#
13 lines
373 B
C#
namespace MareSynchronosShared.Utils.Configuration;
|
|
|
|
public class CdnShardConfiguration
|
|
{
|
|
public List<string> Continents { get; set; }
|
|
public string FileMatch { get; set; }
|
|
public Uri CdnFullUrl { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return CdnFullUrl.ToString() + "[" + string.Join(',', Continents) + "] == " + FileMatch;
|
|
}
|
|
} |