2014-01-31 16:53:27 -06:00
|
|
|
var lib = require('../example');
|
|
|
|
|
|
|
|
function BadApp(app) {
|
|
|
|
this.app = app;
|
|
|
|
}
|
|
|
|
|
|
|
|
BadApp.prototype.install = function () {
|
|
|
|
return lib.answer;
|
|
|
|
};
|
|
|
|
|
|
|
|
BadApp.prototype.activate = function () {
|
|
|
|
};
|
|
|
|
|
2014-09-10 00:06:24 -04:00
|
|
|
module.exports = BadApp;
|