1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-03 00:30:05 +01:00
HackMyResume/dist/cli/msg.js

18 lines
280 B
JavaScript
Raw Normal View History

2016-01-26 15:58:10 +00:00
2016-01-25 15:34:57 +00:00
/**
Message-handling routines for HackMyResume.
2016-01-26 15:58:10 +00:00
@module cli/msg
2016-01-25 15:34:57 +00:00
@license MIT. See LICENSE.md for details.
2016-01-26 15:58:10 +00:00
*/
2016-01-25 15:34:57 +00:00
(function() {
2016-01-26 15:58:10 +00:00
var PATH, YAML;
PATH = require('path');
2016-01-25 15:34:57 +00:00
2016-01-26 15:58:10 +00:00
YAML = require('yamljs');
2016-01-25 15:34:57 +00:00
2016-01-26 15:58:10 +00:00
module.exports = YAML.load(PATH.join(__dirname, 'msg.yml'));
2016-01-25 15:34:57 +00:00
2016-01-26 15:58:10 +00:00
}).call(this);