aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_pod_unsupported.go
blob: 7cecb7c56959e58274c24b89b1f48f8e74736187 (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
}