feature C libcurl

This commit is contained in:
Nishant Kumar
2024-03-19 15:24:49 +05:30
parent 9b4076363d
commit 7ab3f90093
4 changed files with 1211 additions and 1 deletions

View File

@ -281,7 +281,8 @@ enum CodegenLanguage {
javaAsyncHttpClient("Java (asynchttpclient)", "java", "java"),
javaHttpClient("Java (HttpClient)", "java", "java"),
juliaHttp("Julia (HTTP)", "julia", "jl"),
phpGuzzle("PHP (guzzle)", "php", "php");
phpGuzzle("PHP (guzzle)", "php", "php"),
cCurlCodeGen("C (Curl)", "C", "c");
const CodegenLanguage(this.label, this.codeHighlightLang, this.ext);
final String label;