2 changed files with 15 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||
package com.aeon.tcp.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
public class HealthController { |
|||
|
|||
@GetMapping("/healthcheck") |
|||
public String health(){ |
|||
return "ok"; |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue