blob: 1340aac3350e1973f7d493d63be12d58d0c6c06e [file] [log] [blame]
Iftekharul Islam08054412017-08-25 10:29:57 -05001/**
2 * A module for the multi-server
3 *
4 * @module app/multi-server
5 * @exports app/multi-server
6 * @version 0.0.1
7 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.multiServer', [
14 'ngRoute',
15 'app.constants',
16 'app.common.services'
17 ])
18 // Route configuration
19 .config(['$routeProvider', function ($routeProvider) {
20 $routeProvider
21 .when('/multi-server/overview', {
22 'templateUrl': 'multi-server/controllers/multi-server-controller.html',
23 'controller': 'multiServerController',
24 authenticated: true
25 });
26 }]);
27
28})(window.angular);