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