forked from Ivasoft/traefik
15 lines
176 B
JavaScript
15 lines
176 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('traefik')
|
|
.run(runBlock);
|
|
|
|
/** @ngInject */
|
|
function runBlock($log) {
|
|
|
|
$log.debug('runBlock end');
|
|
}
|
|
|
|
})();
|