(message: string, fn: () => PromiseLike<Value>)
| 31 | }) |
| 32 | |
| 33 | const cliTry = <Value>(message: string, fn: () => PromiseLike<Value>) => |
| 34 | Effect.tryPromise({ |
| 35 | try: fn, |
| 36 | catch: (error) => new CliError({ message: message + errorMessage(error) }), |
| 37 | }) |
| 38 | |
| 39 | const handlePluginAuth = Effect.fn("Cli.providers.pluginAuth")(function* ( |
| 40 | plugin: { auth: PluginAuth }, |
no test coverage detected