cri-o/lib/container_server_unsupported.go
Vincent Batts 509890acc1
lib: abstract out sandbox for platforms
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-02-27 16:16:48 -05:00

13 lines
271 B
Go

// +build !linux
package lib
import "github.com/kubernetes-incubator/cri-o/lib/sandbox"
func (c *ContainerServer) addSandboxPlatform(sb *sandbox.Sandbox) {
// nothin' doin'
}
func (c *ContainerServer) removeSandboxPlatform(sb *sandbox.Sandbox) {
// nothin' doin'
}