aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_pod_unsupported.go
blob: b22f151d8638205b42a4fa30f4a7339632e73358 (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(options ...PodCreateOption) (*Pod, error) {
	return nil, ErrOSNotSupported
}

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