summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6/app.js
blob: 78a3d2547235e97686b6bd8613744f614cdc972f (plain)
1
2
3
4
5
6
7
8
import angular from 'angular';
import angularCacheModuleName from 'angular-cache';

let app = angular.module('app', [
  angularCacheModuleName
]).run($rootScope => {
  $rootScope.test = 'It works, imported ' + angularCacheModuleName;
});