copay/js/services/pluginManager.js

11 lines
214 B
JavaScript
Raw Normal View History

2014-09-01 12:31:35 -07:00
'use strict';
2014-12-05 07:12:51 -08:00
angular.module('copayApp.services').factory('pluginManager', function() {
2014-12-05 08:24:46 -08:00
var root = {};
root.getInstance = function(config){
return new copay.PluginManager(config);
};
return root;
2014-09-01 19:44:35 -07:00
});