Wallet/js/services/localstorageService.js
2014-12-03 16:30:43 -03:00

9 lines
205 B
JavaScript

'use strict';
angular.module('copayApp.services')
.factory('localstorageService', function($rootScope) {
var LS = require('../js/plugins/LocalStorage');
var ls = new LS();
return ls;
});