mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 15:33:11 +00:00
19 lines
407 B
C#
19 lines
407 B
C#
using CodexContractsPlugin;
|
|
using CodexContractsPlugin.Marketplace;
|
|
|
|
namespace TraceContract
|
|
{
|
|
public class Output
|
|
{
|
|
public void LogRequest(Request request)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void LogEventOrCall<T>(T[] calls) where T : IHasRequestId, IHasBlock
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|