aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_volume_unsupported.go
blob: 3cdb73aed91e88c47a9421c81c12956f76773c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// +build !linux

package libpod

import (
	"context"

	"github.com/containers/podman/v2/libpod/define"
)

func (r *Runtime) removeVolume(ctx context.Context, v *Volume, force bool) error {
	return define.ErrNotImplemented
}

func (r *Runtime) newVolume(ctx context.Context, options ...VolumeCreateOption) (*Volume, error) {
	return nil, define.ErrNotImplemented
}

func (r *Runtime) NewVolume(ctx context.Context, options ...VolumeCreateOption) (*Volume, error) {
	return nil, define.ErrNotImplemented
}