return static error on unimplemented manager actions

This commit is contained in:
Bradley Cicenas
2020-10-26 11:38:17 +00:00
parent c5038e2edd
commit 53ec5c911a
5 changed files with 20 additions and 16 deletions

View File

@@ -1,5 +1,9 @@
package manager
import "errors"
var ActionNotImplErr = errors.New("action not implemented")
type Manager interface {
Start() error
Stop() error