Program is an interface to execute external programs.
| 8 | |
| 9 | // Program is an interface to execute external programs. |
| 10 | type Program interface { |
| 11 | Output() ([]byte, error) |
| 12 | Input(in io.Reader) |
| 13 | } |
| 14 | |
| 15 | // ProgramFunc is a type of function that initializes programs based on arguments. |
| 16 | type ProgramFunc func(args ...string) Program |
no outgoing calls
no test coverage detected
searching dependent graphs…