mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
12 lines
299 B
Go
12 lines
299 B
Go
//go:build linux
|
|||
|
|
// +build linux
|
||
|
|
|
||
|
|
package sandbox
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
// newPlatformSandbox creates a platform-specific sandbox instance for Linux.
|
||
|
|
func newPlatformSandbox() (Sandbox, error) {
|
||
|
|
return nil, errors.New("sandbox not yet implemented for Linux (coming soon: Bubblewrap or seccomp-bpf)")
|
||
|
|
}
|