feat:add code generator for Shell with HTTPie (#1290)

Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
This commit is contained in:
Ben
2020-10-18 21:24:07 -05:00
committed by GitHub
parent 37f914d1cc
commit 59974edf80
3 changed files with 75 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import { WgetCodegen } from "./generators/wget"
import { CsRestSharpCodegen } from "./generators/cs-restsharp"
import { RubyNetHttpCodeGen } from "./generators/ruby-net-http"
import { SalesforceApexCodegen } from "./generators/salesforce-apex"
import { ShellHTTPie } from "./generators/shell-httpie"
/* Register code generators here.
* A code generator is defined as an object with the following structure.
@@ -39,6 +40,7 @@ export const codegens = [
PythonHttpClientCodegen,
RubyNetHttpCodeGen,
SalesforceApexCodegen,
ShellHTTPie,
WgetCodegen,
]