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
+13
View File
@@ -0,0 +1,13 @@
//go:build windows
// +build windows
package sandbox
import "errors"
// newPlatformSandbox creates a platform-specific sandbox instance for Windows.
// Currently not implemented - returns an error.
// Future implementations will use AppContainer or Job Objects.
func newPlatformSandbox() (Sandbox, error) {
return nil, errors.New("sandbox not yet implemented for Windows (coming soon: AppContainer or Job Objects)")
}