Issue #25: implement sta command dispatcher

This commit is contained in:
Joseph Doherty
2026-04-26 17:49:01 -04:00
parent a20517f5ad
commit 14419853c7
4 changed files with 601 additions and 0 deletions
@@ -0,0 +1,8 @@
using MxGateway.Contracts.Proto;
namespace MxGateway.Worker.Sta;
public interface IStaCommandExecutor
{
MxCommandReply Execute(StaCommand command);
}