cs-codex-dist-tests/KubernetesWorkflow/StartupConfig.cs

19 lines
387 B
C#
Raw Normal View History

2023-04-12 11:53:55 +00:00
namespace KubernetesWorkflow
{
public class StartupConfig
{
private readonly List<object> configs = new List<object>();
public void Add(object config)
{
configs.Add(config);
}
public T Get<T>()
{
var match = configs.Single(c => c.GetType() == typeof(T));
return (T)match;
}
}
}