mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
16 lines
336 B
C#
16 lines
336 B
C#
namespace CodexDistTestCore
|
|
{
|
|
public interface IMetricsAccess
|
|
{
|
|
int GetMostRecentInt(string metricName, IOnlineCodexNode node);
|
|
}
|
|
|
|
public class MetricsAccess : IMetricsAccess
|
|
{
|
|
public int GetMostRecentInt(string metricName, IOnlineCodexNode node)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|