some refactoring fix some stuff add http context accessor configure metrics as well commit 713d054ccb965f7adb8eafa6e3fb52853a1e6dd2 (partial, Docker only)
9 lines
243 B
C#
9 lines
243 B
C#
namespace MareSynchronosShared.Utils.Configuration;
|
|
|
|
public interface IMareConfiguration
|
|
{
|
|
T GetValueOrDefault<T>(string key, T defaultValue);
|
|
T GetValue<T>(string key);
|
|
string SerializeValue(string key, string defaultValue);
|
|
}
|