Files
pmg/sandbox/platform/probes_default_darwin.go
T

15 lines
290 B
Go
Raw Normal View History

//go:build darwin
// +build darwin
package platform
import "github.com/safedep/pmg/sandbox"
// DefaultProbes returns the sandbox probes for the host platform (darwin).
func DefaultProbes() []sandbox.Probe {
return []sandbox.Probe{
NewSeatbeltProbe(),
NewSeatbeltCanaryProbe(),
}
}