feat: Initial commit

This commit is contained in:
uttarayan21
2025-10-08 14:50:15 +05:30
commit 3cb82612be
16 changed files with 4785 additions and 0 deletions

6
src/errors.rs Normal file
View File

@@ -0,0 +1,6 @@
pub use error_stack::{Report, ResultExt};
#[derive(Debug, thiserror::Error)]
#[error("An error occurred")]
pub struct Error;
pub type Result<T, E = error_stack::Report<Error>> = core::result::Result<T, E>;