19 lines
412 B
Java
19 lines
412 B
Java
|
|
package com.gcsc.guide.controller;
|
||
|
|
|
||
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
@RestController
|
||
|
|
public class HealthController {
|
||
|
|
|
||
|
|
@GetMapping("/api/health")
|
||
|
|
public Map<String, String> health() {
|
||
|
|
return Map.of(
|
||
|
|
"status", "UP",
|
||
|
|
"service", "gc-guide-api"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|