(args)
| 58 | } |
| 59 | |
| 60 | async function status(args) { |
| 61 | const config = await loadConfig(args); |
| 62 | const local = await localProviderMetadata(config).catch((error) => ({ |
| 63 | ok: false, |
| 64 | error: describeError(error), |
| 65 | })); |
| 66 | console.log(JSON.stringify({ config: redactConfig(config), local }, null, 2)); |
| 67 | } |
| 68 | |
| 69 | async function run(args) { |
| 70 | const config = await loadConfig(args); |
no test coverage detected