7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
'use strict';
|
|
'use strict';
|
|
angular.module('copayApp.services')
|
|
.factory('addressService', function(storageService, profileService, $log, $timeout, lodash, bwcError, gettextCatalog) {
|
|
var root = {};
|
|
return root;
|
|
});
|