Wallet/src/js/services/pluginManager.js
Matias Alejo Garcia 320de62f13 bwc
2015-04-11 10:53:15 -03:00

10 lines
214 B
JavaScript

'use strict';
angular.module('copayApp.services').factory('pluginManager', function() {
var root = {};
root.getInstance = function(config){
return new copay.PluginManager(config);
};
return root;
});