7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
'use strict';
|
|
angular.module('copayApp.services').factory('walletFactory', function(pluginManager){
|
|
|
|
console.log('[walletFactory.js.3]'); //TODO
|
|
return new copay.WalletFactory(config, copay.version, pluginManager);
|
|
});
|
|
|