You've already forked agentic-coding-workflow
bugfix
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
//go:build linux
|
||||
|
||||
package sandbox
|
||||
|
||||
// newPlatform dispatches the Linux sandbox modes to their concrete impls.
|
||||
func newPlatform(mode Mode) Sandbox {
|
||||
switch mode {
|
||||
case ModeUID:
|
||||
return &uidSandbox{}
|
||||
case ModeContainer:
|
||||
return &containerSandbox{}
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user