use of io.codekvast.dashboard.dashboard.model.status.GetStatusResponse in project codekvast by crispab.
the class DashboardApiController method getStatus1.
@GetMapping("/dashboard/api/v1/status")
public GetStatusResponse getStatus1() {
GetStatusResponse status = dashboardService.getStatus();
logger.trace("{}", status);
return status;
}
Aggregations