copay/js/services/pluginManager.js

11 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;
});