This commit removes an unused import. Signed-off-by: Florin Patan <florinpatan@gmail.com> Upstream-commit: 52d471684350c31578f67c6b120106aefd619381 Component: engine
13 lines
210 B
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
|
|
}
|