nyx/tests/dynamic_fixtures/class_method/go/benign.go

12 lines
240 B
Go
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
// Phase 19 (Track M.1) — class-method benign control for Go.
package entry
import "os/exec"
type UserService struct{}
func (UserService) Run(input string) string {
out, _ := exec.Command("true", input).Output()
return string(out)
}