summaryrefslogtreecommitdiff
path: root/libpod/container_unsupported.go
blob: 5b923b52ab701a1bc787eca45cf56cb475180af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build !linux

package libpod

type containerPlatformState struct{}

func (ctr *Container) setNamespace(netNSPath string, newState *containerState) error {
	return ErrNotImplemented
}

func (ctr *Container) setNamespaceStatePath() string {
	return ""
}