mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
12 lines
266 B
Go
12 lines
266 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package sandbox
|
|
|
|
import "errors"
|
|
|
|
// newPlatformSandbox creates a platform-specific sandbox instance for Windows.
|
|
func newPlatformSandbox() (Sandbox, error) {
|
|
return nil, errors.New("sandbox not yet implemented for Windows")
|
|
}
|