1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-03 00:30:05 +01:00
HackMyResume/src/index.js
2016-01-10 19:11:43 -05:00

24 lines
293 B
JavaScript

#! /usr/bin/env node
/**
Command-line interface (CLI) for HackMyResume.
@license MIT. Copyright (c) 2015 hacksalot (https://github.com/hacksalot)
@module index.js
*/
try {
require('./cli/main')( process.argv );
}
catch( ex ) {
require('./core/error-handler').err( ex, true );
}