mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
14 lines
226 B
Go
14 lines
226 B
Go
package connector
|
|
|
|
import (
|
|
"github.com/bcicen/ctop/container"
|
|
"github.com/bcicen/ctop/logging"
|
|
)
|
|
|
|
var log = logging.Init()
|
|
|
|
type Connector interface {
|
|
All() container.Containers
|
|
Get(string) (*container.Container, bool)
|
|
}
|