blob: a0dbae959fb7f8e9b14df821ce8a7cb58d50d8fc [file] [log] [blame]
package com.pt.testResponse;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@CrossOrigin(origins = "*")
public class TestController {
@GetMapping("/api/test")
public String testResponse() {
return "Hello, world!";
}
}