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);
|