Monorepo for Tangled tangled.org
2

Configure Feed

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

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}