base.js 462 B

123456789101112131415161718192021222324
  1. // Generated by IcedCoffeeScript 1.7.1-f
  2. (function() {
  3. var BaseCommand, Config, os, path;
  4. Config = require('./config').Config;
  5. os = require('os');
  6. path = require('path');
  7. exports.BaseCommand = BaseCommand = (function() {
  8. function BaseCommand(argv) {
  9. this.config = new Config(argv);
  10. }
  11. BaseCommand.prototype.run = function(cb) {
  12. return cb(new Error("unimplemented"));
  13. };
  14. return BaseCommand;
  15. })();
  16. }).call(this);