UNPKG

@laiyon/create-wasapi

Version:

CLI to create WhatsApp bot projects with Wasapi and BuilderBot

14 lines (13 loc) 359 B
import chalk from "chalk"; import inquirer from "inquirer"; export const apiKeyWasapi = async () => { const { enteredKey } = await inquirer.prompt([ { type: "password", name: "enteredKey", message: chalk.blue("🔑 Enter your Wasapi API Key:"), mask: "*" } ]); return enteredKey; };