(store *storage.Storage, cmd string)
| 81 | } |
| 82 | |
| 83 | func executeActionCommandC(store *storage.Storage, cmd string) (*cobra.Command, string, error) { |
| 84 | return executeActionCommandStdinC(store, nil, cmd) |
| 85 | } |
| 86 | |
| 87 | func executeActionCommandStdinC(store *storage.Storage, in *os.File, cmd string) (*cobra.Command, string, error) { |
| 88 | args, err := shellwords.Parse(cmd) |
no test coverage detected
searching dependent graphs…