mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
0f65e4c9f3
Reintroduce HackMyCore, dropping the interim submodule, and reorganize and improve tests.
23 lines
243 B
JavaScript
23 lines
243 B
JavaScript
#! /usr/bin/env node
|
|
|
|
|
|
|
|
/**
|
|
Command-line interface (CLI) for HackMyResume.
|
|
@license MIT. See LICENSE.md for details.
|
|
@module index.js
|
|
*/
|
|
|
|
|
|
|
|
try {
|
|
|
|
require('./main')( process.argv );
|
|
|
|
}
|
|
catch( ex ) {
|
|
|
|
require('./error').err( ex, true );
|
|
|
|
}
|