blob: 81d1c7011afd2446b4d8c7e48bfdea6d9fc58e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build linux,!cgo
package generate
import (
"errors"
"github.com/containers/libpod/libpod/image"
"github.com/containers/libpod/pkg/specgen"
spec "github.com/opencontainers/runtime-spec/specs-go"
)
func getSeccompConfig(s *specgen.SpecGenerator, configSpec *spec.Spec, img *image.Image) (*spec.LinuxSeccomp, error) {
return nil, errors.New("not implemented")
}
|