Add: Shell wget codegen (#1256)

* Add: Shell wget codegen

* Add missing snapshot for tests
This commit is contained in:
Raul Piraces Alastuey
2020-10-09 16:14:49 +02:00
committed by GitHub
parent 1afd0381c1
commit 82c874afb5
3 changed files with 82 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import { PowerShellRestMethod } from "./generators/powershell"
import { PhpCurlCodegen } from "./generators/php-curl"
import { PythonRequestsCodegen } from "./generators/python-requests"
import { PythonHttpClientCodegen } from "./generators/python-http-client"
import { WgetCodegen } from "./generators/wget"
/* Register code generators here.
* A code generator is defined as an object with the following structure.
@@ -32,6 +33,7 @@ export const codegens = [
PowerShellRestMethod,
PythonRequestsCodegen,
PythonHttpClientCodegen,
WgetCodegen,
]
export function generateCodeWithGenerator(codegenID, context) {