2015-04-24 10:58:28 -04:00

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'
};
});