feat(conf): make param playground_path configurable with cli command

This commit is contained in:
librelois 2021-05-30 00:56:21 +02:00
parent d2c46fbd06
commit 02b68de3e8

View file

@ -171,6 +171,11 @@ impl GvaCommand {
.msg(format!("Path ? [{}]", conf.path))
.default(conf.path)
.get();
// playgroundPath
conf.path = input()
.msg(format!("playground path ? [{}]", conf.playground_path))
.default(conf.playground_path.clone())
.get();
// subscriptionsPath
conf.subscriptions_path = input()
.msg(format!(