penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
24 lines (23 loc) • 589 B
JavaScript
/**
* ./src/lib/get_dns.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import inquirer from 'inquirer';
export default async function getDns(initial) {
return new Promise((resolve) => {
const questions = [
{
default: initial,
message: 'use ; to separe: ',
name: 'dns',
type: 'input'
}
];
inquirer.prompt(questions).then((options) => {
resolve(options.dns);
});
});
}