19 lines
407 B
C#
Raw Normal View History

2025-05-20 10:19:07 +02:00
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();
}
}
}