using Core; namespace GethPlugin { public static class CoreInterfaceExtensions { public static IGethNodeInfo StartGethNode(this CoreInterface ci, Action setup) { return Plugin(ci).StartGeth(setup); } private static GethPlugin Plugin(CoreInterface ci) { return ci.GetPlugin(); } } }