bookmark.js 410 B

123456789101112131415
  1. // var debug = require('debug')('crowi:events:page')
  2. const util = require('util');
  3. const events = require('events');
  4. function BookmarkEvent(crowi) {
  5. this.crowi = crowi;
  6. events.EventEmitter.call(this);
  7. }
  8. util.inherits(BookmarkEvent, events.EventEmitter);
  9. BookmarkEvent.prototype.onCreate = function(bookmark) {};
  10. BookmarkEvent.prototype.onDelete = function(bookmark) {};
  11. module.exports = BookmarkEvent;