mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 05:53:12 +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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|