added container menu closes #28

This commit is contained in:
Peter Reisinger
2017-11-20 11:09:36 +00:00
parent e1ec264345
commit 436266b1a4
8 changed files with 163 additions and 3 deletions

19
connector/manager/mock.go Normal file
View File

@@ -0,0 +1,19 @@
package manager
type Mock struct {}
func NewMock() *Mock {
return &Mock{}
}
func (m *Mock) Start() error {
return nil
}
func (m *Mock) Stop() error {
return nil
}
func (m *Mock) Remove() error {
return nil
}