Files
pmg/sandbox/sandbox_linux.go
T

14 lines
410 B
Go

//go:build linux
// +build linux
package sandbox
import "errors"
// newPlatformSandbox creates a platform-specific sandbox instance for Linux.
// Currently not implemented - returns an error.
// Future implementations will use Bubblewrap or seccomp-bpf.
func newPlatformSandbox() (Sandbox, error) {
return nil, errors.New("sandbox not yet implemented for Linux (coming soon: Bubblewrap or seccomp-bpf)")
}