Added codegen for java htttpclient with test cases

This commit is contained in:
PCoder23
2024-02-24 11:02:05 +05:30
parent 975f748cdc
commit ac7950efe7
4 changed files with 987 additions and 1 deletions

View File

@ -268,7 +268,9 @@ enum CodegenLanguage {
nodejsFetch("node.js (fetch)", "javascript", "js"),
kotlinOkHttp("Kotlin (okhttp3)", "java", "kt"),
pythonHttpClient("Python (http.client)", "python", "py"),
pythonRequests("Python (requests)", "python", "py");
pythonRequests("Python (requests)", "python", "py"),
javaHttpClient("Java (HttpClient)", "java", "java")
;
const CodegenLanguage(this.label, this.codeHighlightLang, this.ext);
final String label;