csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | using CascadeIDE.Services.Intercom; |
| 4 | using HybridCodebaseIndex.Core.Indexing; |
| 5 | |
| 6 | namespace CascadeIDE.Features.HybridIndex.Application; |
| 7 | |
| 8 | internal static class HybridIndexIntercomReindexObservers |
| 9 | { |
| 10 | public static IReadOnlyList<ICodebaseIndexReindexObserver> Create(string? solutionPath, string indexDirectoryRelative) => |
| 11 | [new IntercomSymbolLineHciReindexObserver(solutionPath, indexDirectoryRelative)]; |
| 12 | } |
| 13 | |
View only · write via MCP/CIDE