mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
13 lines
332 B
Go
13 lines
332 B
Go
|
package daemon
|
||
|
|
||
|
import (
|
||
|
apitypes "github.com/docker/docker/api/types"
|
||
|
)
|
||
|
|
||
|
// Cluster is the interface for github.com/docker/docker/daemon/cluster.(*Cluster).
|
||
|
type Cluster interface {
|
||
|
GetNetwork(input string) (apitypes.NetworkResource, error)
|
||
|
GetNetworks() ([]apitypes.NetworkResource, error)
|
||
|
RemoveNetwork(input string) error
|
||
|
}
|