blob: fc0c58c37bf0f55adbf0cd244de6a7655d1cb07d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// +build linux,!cgo
package specgen
import (
spec "github.com/opencontainers/runtime-spec/specs-go"
)
func (s *SpecGenerator) getSeccompConfig(configSpec *spec.Spec) (*spec.LinuxSeccomp, error) {
return nil, nil
}
|