containerd/ctr/container_solaris.go

10 lines
144 B
Go

package main
import (
"errors"
)
func createStdio() (s stdio, err error) {
return s, errors.New("createStdio not implemented on Solaris")
}