2026-05-19 14:40:54 +05:30
|
|
|
//go:build !darwin && !linux
|
|
|
|
|
// +build !darwin,!linux
|
|
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
|
|
|
|
|
import "github.com/safedep/pmg/sandbox"
|
|
|
|
|
|
|
|
|
|
// DefaultProbes returns no probes on unsupported platforms.
|
|
|
|
|
func DefaultProbes() []sandbox.Probe { return nil }
|