START THE REWRITE OF THE INDEX SCHEDULER: index & register has been implemented

This commit is contained in:
Tamo 2022-09-06 16:43:59 +02:00 committed by Clément Renault
parent f2279f4615
commit 5a9ac4ceb3
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
7 changed files with 423 additions and 5 deletions

View file

@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error("Index not found")]
IndexNotFound,
}