harbor/static/ng/resources/js/user/sign-up.controller.js

15 lines
245 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.user');
.controller('SignUpController', SignUpController);
SignUpController.$inject = ['SignUpService'];
function SignUpController(SignUpService) {
}
})();