Feature hello api
This commit is contained in:
13
src/main/java/com/yam/app/ActuatorApi.java
Normal file
13
src/main/java/com/yam/app/ActuatorApi.java
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user