fix: Misc fixes

This commit is contained in:
Abhisek Datta
2026-01-08 13:50:21 +05:30
parent 8492fcf93d
commit aa2a6cc214
5 changed files with 9 additions and 15 deletions
-2
View File
@@ -6,8 +6,6 @@ package sandbox
import "errors"
// newPlatformSandbox creates a platform-specific sandbox instance for Linux.
// Currently not implemented - returns an error.
// Future implementations will use Bubblewrap or seccomp-bpf.
func newPlatformSandbox() (Sandbox, error) {
return nil, errors.New("sandbox not yet implemented for Linux (coming soon: Bubblewrap or seccomp-bpf)")
}