UNPKG

alia

Version:
15 lines (14 loc) 309 B
import { Flag } from './flag.js'; export class InitFlag extends Flag { flag = { key: 'init', short: 'i', desc: 'initialize config', run: () => this.#init(), noConf: true }; async #init() { await this.confService.init(); return true; } }