Initial commit
This commit is contained in:
commit
2fd06a5e83
40 changed files with 1354 additions and 0 deletions
11
src/v1/mod.rs
Normal file
11
src/v1/mod.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
macro_rules! default_derive {
|
||||
($i:item) => {
|
||||
use serde::{Serialize, Deserialize};
|
||||
#[derive(Serialize, Deserialize, PartialEq, Debug)]
|
||||
$i
|
||||
};
|
||||
}
|
||||
|
||||
mod schemas;
|
||||
|
||||
pub use schemas::*;
|
Loading…
Add table
Add a link
Reference in a new issue