Skip to content

Commit 5818fc8

Browse files
committed
add client constructor
1 parent 3eaddc1 commit 5818fc8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

template.go

+4
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ const timeout = time.Second * {{ .Timeout }}
208208
209209
type {{ $clientName }} struct { NatsConn *nats.Conn }
210210
211+
func New{{ $clientName }}(nc *nats.Conn) *{{ $clientName }} {
212+
return &{{ $clientName }}{ NatsConn: nc }
213+
}
214+
211215
{{ range $index, $method := .Methods }}
212216
func (client *{{ $clientName }}) {{ $method.Name }}({{ template "params" $method }}) {{ template "results" $method }} {
213217
{{- $subject := subject $srv $method }}

0 commit comments

Comments
 (0)