From 0b54f0d7085c11ba26e42d1dfb6a2965f0be704c Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 30 Nov 2022 17:39:58 -0500 Subject: [PATCH] why did I have args in my config? --- Config.cs | 1 - appsettings.example.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Config.cs b/Config.cs index bc1e6c5..189d612 100644 --- a/Config.cs +++ b/Config.cs @@ -9,6 +9,5 @@ public class Config { public string name { get; set; } public string shell { get; set; } - public List args { get; set; } } } \ No newline at end of file diff --git a/appsettings.example.json b/appsettings.example.json index 8c3c54e..75ae92b 100644 --- a/appsettings.example.json +++ b/appsettings.example.json @@ -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"} ] } \ No newline at end of file