Skip to content

Commit c08e283

Browse files
Fix go fmt alignment in Client struct
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e060f62 commit c08e283

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

go/client.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,18 @@ import (
7171
// }
7272
// defer client.Stop()
7373
type Client struct {
74-
options ClientOptions
75-
process *exec.Cmd
76-
client *jsonrpc2.Client
77-
actualPort int
78-
actualHost string
79-
state ConnectionState
80-
sessions map[string]*Session
81-
sessionsMux sync.Mutex
82-
isExternalServer bool
83-
conn net.Conn // stores net.Conn for external TCP connections
84-
useStdio bool // resolved value from options
85-
autoStart bool // resolved value from options
74+
options ClientOptions
75+
process *exec.Cmd
76+
client *jsonrpc2.Client
77+
actualPort int
78+
actualHost string
79+
state ConnectionState
80+
sessions map[string]*Session
81+
sessionsMux sync.Mutex
82+
isExternalServer bool
83+
conn net.Conn // stores net.Conn for external TCP connections
84+
useStdio bool // resolved value from options
85+
autoStart bool // resolved value from options
8686

8787
modelsCache []ModelInfo
8888
modelsCacheMux sync.Mutex

0 commit comments

Comments
 (0)