mirror of
https://github.com/foss42/apidash.git
synced 2025-05-30 21:41:50 +08:00
Added codegen for java htttpclient with test cases
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user