Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface {
// List returns all available volumes
List(ctx context.Context) ([]Volume, error)
// Create creates a new volume
Create(ctx context.Context, name string, options interface{}) (Volume, error)
// Delete deletes an existing volume
Delete(ctx context.Context, volumeID string, options interface{}) error
// Inspect inspects an existing volume
Inspect(ctx context.Context, volumeID string) (Volume, error)
}
Service interacts with the underlying container backend
Click to show internal directories.
Click to hide internal directories.