feat: add codegen for rust(ureq)

This commit is contained in:
Tanish2002
2024-02-25 04:51:56 +05:30
parent d346be2a54
commit cdda439f0f
3 changed files with 219 additions and 1 deletions

View File

@ -268,7 +268,8 @@ 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"),
rustUreq("Rust (ureq)", "rust", "rs");
const CodegenLanguage(this.label, this.codeHighlightLang, this.ext);
final String label;