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

package libpod

import (
	"context"

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

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

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