mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
12 lines
288 B
Go
12 lines
288 B
Go
//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")
|
|
}
|