ruwebframe 0.1.4

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
pub mod baseentity;
pub mod baseentitysingle;
mod basenum;
pub mod getself;
pub mod basegeneral;

pub use basenum::*; 

pub use baseentity::*;
pub use baseentitysingle::*;

#[macro_export]
macro_rules! impl_base_entity {
    ($($t:ident),* $(,)?) => {
        $( impl $crate::rubase::ruentity::BaseEntity for $t {} )*
    };
}

#[macro_export]
macro_rules! impl_base_entity_single {
    ($($t:ident),* $(,)?) => {
        $( impl $crate::rubase::ruentity::BaseEntitySingle for $t {} )*
    };
}