This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knotserver / sandbox / sandbox_other.go
349 B 15 lines
1//go:build !linux 2 3package sandbox 4 5import "fmt" 6 7var ErrUnsupportedPlatform = fmt.Errorf("sandboxing is only supported on Linux") 8 9func platformNew(_ LookupUID) (Backend, string) { 10 return &NoopBackend{}, "sandboxing is not supported on this platform (Linux only)" 11} 12 13func platformProbe() string { 14 return "sandboxing not supported (Linux only)" 15}