UNPKG

ecs-pf

Version:

CLI for port-forwarding to RDS via AWS ECS

13 lines (12 loc) 313 B
import inquirer from "inquirer"; export async function askRetry() { const { shouldRetry } = await inquirer.prompt([ { type: "confirm", name: "shouldRetry", message: "Would you like to retry?", default: true, }, ]); return shouldRetry; }