main.go 201 B

1234567891011121314
  1. package main
  2. import (
  3. "os/exec"
  4. "github.com/langgenius/dify-sandbox/internal/core/lib/python"
  5. )
  6. func main() {
  7. python.InitSeccomp(0, 0, true)
  8. exec.Command("/bin/sh", "-c", "echo hello").Run()
  9. }