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

package libpod

import (
	"context"
)

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

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

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