(ctx context.Context, adapters []adapter.Adapter)
| 9 | // ManagerInterface defines the interface for sync manager operations |
| 10 | type ManagerInterface interface { |
| 11 | SyncFiles(ctx context.Context, adapters []adapter.Adapter) error |
| 12 | SetKnowledgeID(knowledgeID string) |
| 13 | InitializeFileIndex(ctx context.Context, adapters []adapter.Adapter) error |
| 14 | } |