mirror of
https://github.com/containers/podman.git
synced 2025-06-01 17:17:47 +08:00
17 lines
399 B
Go
17 lines
399 B
Go
//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")
|
|
}
|