21 lines
393 B
JavaScript
Executable File
21 lines
393 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const This = require('./this');
|
|
|
|
class PmSearch extends This {
|
|
constructor() {
|
|
super();
|
|
this.version = '0.0.1';
|
|
this.description = 'Search packages of fake package manager';
|
|
super.init(); // initialize commander with overridden version and description
|
|
}
|
|
|
|
start() {
|
|
super.start();
|
|
}
|
|
}
|
|
|
|
// main
|
|
const pmSearch = new PmSearch();
|
|
pmSearch.start();
|