feat: Sandbox implementation with seatbelt

This commit is contained in:
Abhisek Datta
2026-01-08 13:40:22 +05:30
parent 6e830c4c3d
commit ed59693f88
20 changed files with 1235 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build !darwin && !linux && !windows
// +build !darwin,!linux,!windows
package sandbox
import "fmt"
// newPlatformSandbox returns an error on unsupported platforms.
func newPlatformSandbox() (Sandbox, error) {
return nil, fmt.Errorf("sandbox is not supported on this platform")
}