summaryrefslogtreecommitdiff
path: root/pkg/spec/config_linux_nocgo.go
blob: 10329ff3bf59179db47428958fdc3783763d744c (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build linux,!cgo

package createconfig

import (
	spec "github.com/opencontainers/runtime-spec/specs-go"
)

func getSeccompConfig(config *CreateConfig, configSpec *spec.Spec) (*spec.LinuxSeccomp, error) {
	return nil, nil
}