1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-04 05:17:08 +01:00

Refactor status codes.

This commit is contained in:
hacksalot
2015-12-29 05:09:05 -05:00
parent e65c0e128e
commit 13430bcad5
3 changed files with 62 additions and 18 deletions

21
src/core/status-codes.js Normal file
View File

@ -0,0 +1,21 @@
/**
Status codes for HackMyResume.
@module status-codes.js
*/
(function(){
module.exports = {
success: 0,
themeNotFound: 1,
copyCss: 2,
resumeNotFound: 3,
missingCommand: 4,
invalidCommand: 5,
resumeNotFoundAlt: 6,
inputOutputParity: 7,
createNameMissing: 8,
wkhtmltopdf: 9
};
}());