feat(conf): make param playground_path configurable with cli command
This commit is contained in:
parent
d2c46fbd06
commit
02b68de3e8
1 changed files with 5 additions and 0 deletions
|
@ -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!(
|
||||
|
|
Loading…
Add table
Reference in a new issue