12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
const getSupportedLanguageList = require("./proc");
|
|
|
|
main().catch(e => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
});
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
async function main() {
|
|
await getSupportedLanguageList(process.argv[2]);
|
|
}
|