execute command arguments = 1 string; more intuitive

given that I've been down this road of "why did it explode? oh because it's an array of strings. why is it an array? this should stop" before
This commit is contained in:
Adam R Grey 2022-12-14 17:11:32 -05:00
parent d79ba3671b
commit 142873a298
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace franz.tests
System.Threading.Thread.Sleep(15000); System.Threading.Thread.Sleep(15000);
Telefranz.Instance.ProduceMessage(new gray_messages.directorial.execute_command(){ Telefranz.Instance.ProduceMessage(new gray_messages.directorial.execute_command(){
command= "a!", command= "a!",
args= new List<string>(){"param 1", "param 2"} args= "parameters to pass along"
}); });
System.Threading.Thread.Sleep(5000); System.Threading.Thread.Sleep(5000);
Console.WriteLine("k."); Console.WriteLine("k.");

View File

@ -15,7 +15,7 @@ namespace gray_messages.directorial
public class execute_command : gray_messages.message public class execute_command : gray_messages.message
{ {
public string command { get; set; } public string command { get; set; }
public List<string> args { get; set; } = new List<string>(); public string args { get; set; }
public TimeSpan? timeout { get; set; } public TimeSpan? timeout { get; set; }
} }
} }