({ confirmAll, verbose, noArt })
| 123 | * @param {{ confirmAll: boolean, verbose: boolean, noArt: boolean }} options |
| 124 | */ |
| 125 | export const main = async ({ confirmAll, verbose, noArt }) => { |
| 126 | await ec2Scenario.run({ confirmAll, verbose, noArt }); |
| 127 | }; |
| 128 | |
| 129 | // Call function if run directly |
| 130 | import { parseArgs } from "node:util"; |
no test coverage detected