diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-01-27 10:24:06 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-01-27 10:24:06 +0100 |
commit | f305d57ab7702c3ca10fd6e32366d19e524ee1f0 (patch) | |
tree | 381ccb09c7cedc72cdf8ad6c98b681b72f4d1bc0 /lib/generators/json.js | |
parent | 877f2e477b010f9f37a9044606f110a90f077680 (diff) | |
download | gitbook-f305d57ab7702c3ca10fd6e32366d19e524ee1f0.zip gitbook-f305d57ab7702c3ca10fd6e32366d19e524ee1f0.tar.gz gitbook-f305d57ab7702c3ca10fd6e32366d19e524ee1f0.tar.bz2 |
Add more classes structures
Diffstat (limited to 'lib/generators/json.js')
-rw-r--r-- | lib/generators/json.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/generators/json.js b/lib/generators/json.js new file mode 100644 index 0000000..c5a87fe --- /dev/null +++ b/lib/generators/json.js @@ -0,0 +1,14 @@ +var util = require('util'); +var Generator = require('./base'); + +function JSONGenerator() { + Generator.apply(this, arguments); +} +util.inherits(JSONGenerator, Generator); + + + + + + +module.exports = JSONGenerator; |