pub use tosin_macros::{Model, gather_models as gather}; mod meta; pub use meta::*; pub type Id = usize; pub enum Field { CharField { name: &'static str, max_length: Option, }, DateTimeField { name: &'static str, }, IntField { name: &'static str, }, }