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