Feature hello api

This commit is contained in:
Rebwon
2021-10-21 16:28:31 +09:00
committed by MaengSol
parent 71e1fb28fe
commit 24e9a417a0

View File

@@ -0,0 +1,13 @@
package com.yam.app;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public final class ActuatorApi {
@GetMapping("/")
public void hello() {
}
}