UNPKG

280 BJavaScriptView Raw
1
2/**
3Message-handling routines for HackMyResume.
4@module cli/msg
5@license MIT. See LICENSE.md for details.
6 */
7
8(function() {
9 var PATH, YAML;
10
11 PATH = require('path');
12
13 YAML = require('yamljs');
14
15 module.exports = YAML.load(PATH.join(__dirname, 'msg.yml'));
16
17}).call(this);