// 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("/bin/echo", input).Output() return string(out) } var NyxReceivers = map[string]interface{}{ "UserService": UserService{}, }