mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
feat: Sandbox implementation with seatbelt
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
//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)")
|
||||
}
|
||||
Reference in New Issue
Block a user