15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.service.main', [])
|
|
|
|
.controller('ServiceMainCtrl', ['$scope', function ($scope) {
|
|
angular.noop();
|
|
}])
|
|
|
|
.directive('banshoServiceMain', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'components/service/service_main/service_main.html'
|
|
};
|
|
});
|