mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
16 lines
321 B
Go
16 lines
321 B
Go
//go:build !darwin && !linux && !windows
|
|||
|
|
// +build !darwin,!linux,!windows
|
||
|
|
|
||
|
|
package platform
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
|
||
|
|
"github.com/safedep/pmg/sandbox"
|
||
|
|
)
|
||
|
|
|
||
|
|
// NewSandbox returns an error on unsupported platforms.
|
||
|
|
func NewSandbox() (sandbox.Sandbox, error) {
|
||
|
|
return nil, errors.New("sandbox not supported on this platform")
|
||
|
|
}
|