2015-02-12 00:55:57 +08:00
|
|
|
'use strict';
|
|
|
|
|
2015-02-13 02:24:05 +08:00
|
|
|
var destroy = require('./plugin/destroy')
|
|
|
|
, initialize = require('./plugin/initialize')
|
|
|
|
, update = require('./plugin/update');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
initialize: initialize,
|
|
|
|
update: update,
|
|
|
|
destroy: destroy
|
|
|
|
};
|