initial git dump
This commit is contained in:
commit
781e25470b
47 changed files with 2361 additions and 0 deletions
20
api/src/lib.rs
Normal file
20
api/src/lib.rs
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue