mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0efee50b95
These types were not used in the API, so could not come up with a reason why they were in that package. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
208 B
Go
8 lines
208 B
Go
// +build linux,!seccomp
|
|
|
|
package seccomp // import "github.com/docker/docker/profiles/seccomp"
|
|
|
|
// DefaultProfile returns a nil pointer on unsupported systems.
|
|
func DefaultProfile() *Seccomp {
|
|
return nil
|
|
}
|