2
0
mirror of synced 2025-01-13 18:14:14 +00:00
cs-codex-dist-tests/DistTestCore/Metrics/PrometheusStartupConfig.cs

13 lines
297 B
C#
Raw Normal View History

2023-04-13 14:36:17 +02:00
namespace DistTestCore.Metrics
{
public class PrometheusStartupConfig
{
public PrometheusStartupConfig(string prometheusConfigBase64)
{
PrometheusConfigBase64 = prometheusConfigBase64;
}
public string PrometheusConfigBase64 { get; }
}
}