(text: string)
| 106 | const appProcess = yield* AppProcess.Service |
| 107 | const encoder = new TextEncoder() |
| 108 | const stdin = (text: string) => Stream.make(encoder.encode(text)) |
| 109 | |
| 110 | const run = Effect.fn("Git.run")( |
| 111 | function* (args: string[], opts: Options) { |