We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eaddc1 commit 5818fc8Copy full SHA for 5818fc8
template.go
@@ -208,6 +208,10 @@ const timeout = time.Second * {{ .Timeout }}
208
209
type {{ $clientName }} struct { NatsConn *nats.Conn }
210
211
+ func New{{ $clientName }}(nc *nats.Conn) *{{ $clientName }} {
212
+ return &{{ $clientName }}{ NatsConn: nc }
213
+ }
214
+
215
{{ range $index, $method := .Methods }}
216
func (client *{{ $clientName }}) {{ $method.Name }}({{ template "params" $method }}) {{ template "results" $method }} {
217
{{- $subject := subject $srv $method }}
0 commit comments