initial git dump

This commit is contained in:
Jonas Rabenstein 2026-02-16 02:51:10 +01:00
commit 781e25470b
47 changed files with 2361 additions and 0 deletions

20
api/src/lib.rs Normal file
View file

@ -0,0 +1,20 @@
pub mod authentication;
pub mod authorization;
pub mod error;
pub mod id;
pub mod schema;
pub mod traits;
mod utils;
#[derive(Debug)]
pub enum Method {
GET,
POST,
}
pub use id::Id;
#[cfg(feature = "reqwest")]
pub mod reqwest;