wip
This commit is contained in:
committed by
=Michael Hohn
parent
9fc07e8c95
commit
12595077c7
@@ -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
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package mci
|
||||
|
||||
type MCCommon struct {
|
||||
type Common struct {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package mci
|
||||
|
||||
type MCLogger struct {
|
||||
type Logger interface {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package mci
|
||||
|
||||
type MCQueue struct {
|
||||
type Queue interface {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package mci
|
||||
|
||||
type MCRunner struct {
|
||||
type Runner interface {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package mci
|
||||
|
||||
type MCStorage struct {
|
||||
type Storage interface {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user