| 1024 | } |
| 1025 | |
| 1026 | type workspaceInfoService struct { |
| 1027 | socket net.Listener |
| 1028 | server *grpc.Server |
| 1029 | api.UnimplementedWorkspaceInfoServiceServer |
| 1030 | } |
| 1031 | |
| 1032 | func startInfoService(socketDir string) (func(), error) { |
| 1033 | socketFN := filepath.Join(socketDir, "info.sock") |
nothing calls this directly
no outgoing calls
no test coverage detected