2015-04-24 11:27:00 -04:00

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