This commit is contained in:
Michael Hohn
2024-05-10 13:21:50 -07:00
committed by =Michael Hohn
parent 9fc07e8c95
commit 12595077c7
18 changed files with 66 additions and 37 deletions

View File

@@ -1,4 +1,12 @@
package mci
type MCCommander struct {
type Commander interface {
}
type State struct {
Commander Commander
Logger Logger
Queue Queue
Storage Storage
Runner Runner
}