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

package libpod

import (
	"context"
)

// NewPod makes a new, empty pod
func (r *Runtime) NewPod(ctx context.Context, options ...PodCreateOption) (*Pod, error) {
	return nil, ErrOSNotSupported
}

func (r *Runtime) removePod(ctx context.Context, p *Pod, removeCtrs, force bool) error {
	return ErrOSNotSupported
}