Builder
Get template V2
Gets the template for a new plugin of the given language initialized with the supplied plugin name.
GET
Path Parameters
The language toolchain used to configure the builder
The plugin name (user-defined)
Query Parameters
Response
200 - application/json
OK
The language of a plugin
Example:
"rust"
The source code of a plugin
Example:
" ```rust\n import { logInfo } from \"@suborbital/suborbital\"\n\n export function run(input: ArrayBuffer): ArrayBuffer {\n let inStr = String.UTF8.decode(input)\n\n let out = \"Hello there, \" + inStr\n\n return String.UTF8.encode(out)\n }\n ```\n"
An array of tests