From 02b68de3e8fef089688bf4c2c19b4417323372a6 Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Sun, 30 May 2021 00:56:21 +0200
Subject: [PATCH] feat(conf): make param playground_path configurable with cli
 command

---
 conf/src/lib.rs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/conf/src/lib.rs b/conf/src/lib.rs
index 846a8d7..126b017 100644
--- a/conf/src/lib.rs
+++ b/conf/src/lib.rs
@@ -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!(
-- 
GitLab