7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
|
|
'use strict';
|
||
|
|
angular.module('copayApp.services').factory('pricechartService', function($http, $log, lodash, moment, storageService, configService, platformInfo, nextStepsService, homeIntegrationsService) {
|
||
|
|
var root = {};
|
||
|
|
var credentials = {};
|
||
|
|
|
||
|
|
return root;
|
||
|
|
});
|