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

15 lines
245 B
JavaScript

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