moby--moby/profiles/seccomp/seccomp_unsupported.go

14 lines
261 B
Go

// +build linux,!seccomp
package seccomp
import (
"github.com/docker/docker/api/types"
"github.com/opencontainers/runtime-spec/specs-go"
)
// DefaultProfile returns a nil pointer on unsupported systems.
func DefaultProfile() *types.Seccomp {
return nil
}