This commit is contained in:
Michael Hohn
2024-05-10 10:37:44 -07:00
committed by =Michael Hohn
parent 12b9bd9858
commit 9fc07e8c95
22 changed files with 61 additions and 9 deletions

View File

@@ -0,0 +1,4 @@
package mci
type MCCommander struct {
}

4
interfaces/mci/common.go Normal file
View File

@@ -0,0 +1,4 @@
package mci
type MCCommon struct {
}

4
interfaces/mci/logger.go Normal file
View File

@@ -0,0 +1,4 @@
package mci
type MCLogger struct {
}

4
interfaces/mci/queue.go Normal file
View File

@@ -0,0 +1,4 @@
package mci
type MCQueue struct {
}

4
interfaces/mci/runner.go Normal file
View File

@@ -0,0 +1,4 @@
package mci
type MCRunner struct {
}

View File

@@ -0,0 +1,4 @@
package mci
type MCStorage struct {
}