fix: format code with gofmt

This commit is contained in:
2026-08-30 09:46:58 -07:00
parent a8ed507198
commit da6ea54c96
6 changed files with 27 additions and 27 deletions
+6 -6
View File
@@ -15,18 +15,18 @@ import (
// Queue lifecycle (create/delete/configure) is managed via the Queue CRD, not
// this client — see kafaka_management_service design.md §2a/§2b.
type Client struct {
conn *grpc.ClientConn
stub kafkamgmtv1.QueueServiceClient
conn *grpc.ClientConn
stub kafkamgmtv1.QueueServiceClient
}
// Option configures a Client during New.
type Option func(*options)
type options struct {
tokenSource TokenSource
tlsConfig credentials.TransportCredentials
dialTimeout time.Duration
dialOpts []grpc.DialOption
tokenSource TokenSource
tlsConfig credentials.TransportCredentials
dialTimeout time.Duration
dialOpts []grpc.DialOption
}
// WithTokenSource attaches a bearer token to every outgoing call via source.