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 ab1800551f
commit 1a47949063
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
7 changed files with 453 additions and 9 deletions

View file

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