19 lines
463 B
Java
19 lines
463 B
Java
package com.mattrixwv.cipherstream.controller;
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
@Slf4j
|
|
@RestController
|
|
public class HealthCheckController{
|
|
@RequestMapping(value = "/health", method = RequestMethod.OPTIONS)
|
|
public void healthCheck(){
|
|
log.debug("Health check");
|
|
}
|
|
}
|