Wallet/js/services/pluginManager.js

10 lines
214 B
JavaScript
Raw Normal View History

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