blob: 4a1880b745b23d6c2c926b2830708cf9a133aed7 (
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/common/libimage"
"github.com/containers/podman/v3/pkg/specgen"
spec "github.com/opencontainers/runtime-spec/specs-go"
)
func getSeccompConfig(s *specgen.SpecGenerator, configSpec *spec.Spec, img *libimage.Image) (*spec.LinuxSeccomp, error) {
return nil, errors.New("not implemented")
}
|