mirror of
https://github.com/containers/podman.git
synced 2025-09-17 23:18:39 +08:00

Automated for .go files via gomove [1]: `gomove github.com/containers/podman/v3 github.com/containers/podman/v4` Remaining files via vgrep [2]: `vgrep github.com/containers/podman/v3` [1] https://github.com/KSubedi/gomove [2] https://github.com/vrothberg/vgrep Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
16 lines
374 B
Go
16 lines
374 B
Go
// +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")
|
|
}
|