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

13 lines
210 B
Go

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