16 lines
304 B
C#
16 lines
304 B
C#
using GethPlugin;
|
|
using KubernetesWorkflow;
|
|
|
|
namespace CodexContractsPlugin
|
|
{
|
|
public class CodexContractsContainerConfig
|
|
{
|
|
public CodexContractsContainerConfig(IGethNode gethNode)
|
|
{
|
|
GethNode = gethNode;
|
|
}
|
|
|
|
public IGethNode GethNode { get; }
|
|
}
|
|
}
|