summaryrefslogtreecommitdiffstats
path: root/lib/generators/json.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/generators/json.js')
-rw-r--r--lib/generators/json.js14
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;