8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
'use strict';
|
|
|
|
var wf;
|
|
angular.module('copay.walletFactory').factory('walletFactory', function($rootScope) {
|
|
wf = wf || new copay.WalletFactory(config);
|
|
return wf;
|
|
});
|
|
|