15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
'use strict';
|
|
|
|
angular.module('bansho.host.main', [])
|
|
|
|
.controller('HostMainCtrl', ['$scope', function ($scope) {
|
|
angular.noop();
|
|
}])
|
|
|
|
.directive('banshoHostMain', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'components/host/host_main/host_main.html'
|
|
};
|
|
});
|