bansho/app/components/service/service_main/service_main.js

14 lines
321 B
JavaScript

'use strict';
angular.module('adagios.service.main', [])
.controller('ServiceMainCtrl', ['$scope', function ($scope) {
}])
.directive('adgServiceMain', function () {
return {
restrict: 'E',
templateUrl: 'components/service/service_main/service_main.html'
};
});