mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-10 02:45:44 +00:00
16 lines
399 B
Go
16 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")
|
|
}
|