Wallet/js/services/pluginManager.js
Matias Alejo Garcia e4f5862576 add configService
2014-12-05 14:33:49 -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;
});