forget execute check. I'm not going to know what output means a successful check. You will. Just execute_command.

This commit is contained in:
Adam R. Grey 2021-10-26 03:44:25 -04:00
parent d7192a6897
commit 409b0854a8
2 changed files with 0 additions and 29 deletions

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using silver_messages;
namespace silver_messages.directorial
{
public class check_complete : silver_messages.message
{
public string check { get; set; }
public string result { get; set; }
}
}

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using silver_messages;
namespace silver_messages.directorial
{
/*
* run it and send a check_complete
*/
public class execute_check : silver_messages.message
{
public string check { get; set; }
public List<string> args { get; set; } = new List<string>();
}
}