Add eth initializer

This commit is contained in:
nolash
2021-10-18 10:47:48 +02:00
parent 817fc40d84
commit 24e2e62924
11 changed files with 105 additions and 12 deletions

View File

@@ -9,6 +9,7 @@ import importlib
import chainlib.cli
import cic.cmd.init as cmd_init
import cic.cmd.show as cmd_show
import cic.cmd.ext as cmd_ext
import cic.cmd.export as cmd_export
logging.basicConfig(level=logging.WARNING)
@@ -30,6 +31,9 @@ sub_show = sub.add_parser('show', help='display summary of current state of cic
cmd_show.process_args(sub_show)
sub_export = sub.add_parser('export', help='export cic data directory state to a specified target')
cmd_export.process_args(sub_export)
sub_ext = sub.add_parser('ext', help='extension helpers')
cmd_ext.process_args(sub_ext)
args = argparser.parse_args(sys.argv[1:])