why did I have args in my config?

This commit is contained in:
Adam R Grey 2022-11-30 17:39:58 -05:00
parent 5994439f9e
commit 0b54f0d708
2 changed files with 1 additions and 2 deletions

View File

@ -9,6 +9,5 @@ public class Config
{
public string name { get; set; }
public string shell { get; set; }
public List<string> args { get; set; }
}
}

View File

@ -2,6 +2,6 @@
"name": "guy who didn't configure",
"bootstrap_servers": "localhost:9092",
"commands": [
{"name":"echo", "shell": "echo", "args": ["i'm an array", "of strings"]}
{"name":"echo", "shell": "echo"}
]
}