12 lines
405 B
Java
12 lines
405 B
Java
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.web.client.RestTemplate;
|
|
import org.springframework.http.HttpEntity;
|
|
import org.springframework.http.HttpHeaders;
|
|
import org.springframework.http.HttpMethod;
|
|
|
|
public class test_api {
|
|
public static void main(String[] args) {
|
|
// Can't easily test without JWT. Let's just create a test controller in the backend!
|
|
}
|
|
}
|