Wallet/js/services/localstorageService.js
Matias Alejo Garcia 723f9e89f5 reuse plugin
2014-12-02 03:55:29 -03:00

9 lines
202 B
JavaScript

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