mirror of
https://github.com/bcicen/ctop.git
synced 2025-11-08 04:05:39 +01:00
14 lines
232 B
Go
14 lines
232 B
Go
|
|
package connector
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/bcicen/ctop/container"
|
||
|
|
"github.com/bcicen/ctop/logging"
|
||
|
|
)
|
||
|
|
|
||
|
|
var log = logging.Init()
|
||
|
|
|
||
|
|
type ContainerSource interface {
|
||
|
|
All() container.Containers
|
||
|
|
Get(string) (*container.Container, bool)
|
||
|
|
}
|