@wundergraph/golang-client
v0.8.19
Published
WunderGraph Golang Client
Downloads
399
Readme
Wundergraph Golang Client
WunderGraph codegen template plugin to auto-generate a Golang client for your WunderGraph API.
Getting Started
npm install @wundergraph/golang-client
Register the codegen template
// .wundergraph/wundergraph.config.ts
import { golangClient } from '@wundergraph/golang-client';
configureWunderGraphApplication({
// ...
// omitted for brevity
codeGenerators: [
{
templates: [
...golangClient.all({
packageName: 'client',
}),
],
path: './generated/golang/client',
},
],
});