mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-02 23:23:45 +01:00
13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
|
(function() {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
angular
|
||
|
.module('harbor.layout.user')
|
||
|
.controller('UserController', UserController);
|
||
|
|
||
|
function UserController() {
|
||
|
|
||
|
}
|
||
|
|
||
|
})();
|