mirror of https://github.com/containers/podman.git
17 lines
310 B
Go
17 lines
310 B
Go
// +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
|
|
}
|