Code refactor, separate discovery from manager

This commit is contained in:
Christopher LaPointe
2023-05-30 21:57:01 -04:00
parent 3974f7be85
commit f9f5e66553
10 changed files with 278 additions and 259 deletions

7
pkg/containers/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package containers
import "errors"
var (
ErrNotFound = errors.New("not found")
)