Initial setup

This commit is contained in:
2025-12-02 21:50:28 +01:00
parent 465e732474
commit 6c87336e71
7 changed files with 249 additions and 0 deletions

9
src/error.rs Normal file
View File

@@ -0,0 +1,9 @@
use thiserror::Error;
#[derive(Debug, Clone, Error)]
pub enum Error {
#[error("Undefined error")]
Generic,
}
type Result<T> = std::result::Result<T, Error>;