(args ...string)
| 57 | } |
| 58 | |
| 59 | func runGo(args ...string) error { |
| 60 | return execGo(os.Stdout, os.Stderr, "run", args...) |
| 61 | } |
| 62 | |
| 63 | func runGoFrom(dir string, args ...string) error { |
| 64 | return execGoFrom(dir, os.Stdout, os.Stderr, "run", args...) |
no test coverage detected