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,11 @@
|
||||
//go:build !darwin && !linux && !windows
|
||||
// +build !darwin,!linux,!windows
|
||||
|
||||
package sandbox
|
||||
|
||||
import "fmt"
|
||||
|
||||
// newPlatformSandbox returns an error on unsupported platforms.
|
||||
func newPlatformSandbox() (Sandbox, error) {
|
||||
return nil, fmt.Errorf("sandbox is not supported on this platform")
|
||||
}
|
||||
Reference in New Issue
Block a user