github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/specgen/generate/config_linux_nocgo.go (about)

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