(_ context.Context)
| 82 | } |
| 83 | |
| 84 | func runStdioServer(_ context.Context) error { |
| 85 | docManager := document.NewDocumentManager() |
| 86 | s := server.NewServer(docManager) |
| 87 | s.StartBackgrondProcesses(context.Background()) |
| 88 | return s.RunStdio() |
| 89 | } |
| 90 | |
| 91 | func runSocketServer(_ context.Context, addr string) error { |
| 92 | docManager := document.NewDocumentManager() |
no test coverage detected