Implement a recursive indexation for the index-related operations

This commit is contained in:
Kerollmops 2022-09-29 18:15:50 +02:00 committed by Clément Renault
parent 248805d2df
commit 3fda1942c0
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
2 changed files with 339 additions and 267 deletions

View file

@ -133,4 +133,8 @@ impl IndexMapper {
Ok(())
}
pub fn indexer_config(&self) -> &IndexerConfig {
&self.indexer_config
}
}