Files
CipherStreamAPI/src/main/java/com/mattrixwv/cipherstream/controller/HealthCheckController.java
2024-04-28 16:25:39 -04:00

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");
}
}