mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 19:56:09 +01:00
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.user');
|
|
.controller('SignUpController', SignUpController);
|
|
|
|
SignUpController.$inject = ['SignUpService'];
|
|
|
|
function SignUpController(SignUpService) {
|
|
|
|
}
|
|
|
|
})(); |