Initial commit

This commit is contained in:
Philip (a-0) 2023-07-02 20:40:33 +02:00
commit 2fd06a5e83
40 changed files with 1354 additions and 0 deletions

11
src/v1/mod.rs Normal file
View 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::*;