nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / webpack_es6 / app.js
1 import angular from 'angular';
2 import angularCacheModuleName from 'angular-cache';
3
4 let app = angular.module('app', [
5   angularCacheModuleName
6 ]).run($rootScope => {
7   $rootScope.test = 'It works, imported ' + angularCacheModuleName;
8 });