blob: 99b0c4eb24145870b1a9c8af236df73defcde706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//go:build linux && !cgo
// +build linux,!cgo
package generate
import (
"errors"
"github.com/containers/common/libimage"
"github.com/containers/podman/v4/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")
}
|