This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.

23 lines
621 B
JavaScript
Executable File

(function () {
'use strict';
angular.module('clientApp')
.controller('UserSpaceCtrl', ['$scope', '$state',
function ($scope, $state) {
init();
// ---------------------------------------------------------------
function init() {
}
// ---------------------------------------------------------------
// Public method -------------------------------------------------
// ---------------------------------------------------------------
}]);
})();