mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
20 lines
216 B
Go
20 lines
216 B
Go
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
|
|
}
|