You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
285 B
12 lines
285 B
package com.yvan.logisticsSim;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
public class SimRootController {
|
|
@GetMapping("/sim/ok")
|
|
public String ok() {
|
|
return "OK";
|
|
}
|
|
}
|
|
|