mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-08 00:48:17 +01:00
15 lines
250 B
JavaScript
15 lines
250 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.layout.dashboard')
|
|
.controller('DashboardController', DashboardController);
|
|
|
|
DashboardController.$inject = ['$scope'];
|
|
|
|
function DashboardController($scope) {
|
|
|
|
}
|
|
|
|
})(); |