/**
 * @author Samy Abdallah
 */
(function() {

    'use strict';

    angular
        .module('moon')
        .controller('LogsController', LogsController);

    function LogsController() {

    }

})();