blob: e48e2b8b896751bfb33cefd182237e5251ee7820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* @author Samy Abdallah
*/
(function() {
'use strict';
angular
.module('moon')
.controller('LogsController', LogsController);
function LogsController() {
}
})();
|