ruwebframe 0.1.6

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
pub mod base_entity;
pub mod base_entity_single;
mod base_enum;
pub mod get_self;
pub mod base_trait;

pub use base_enum::*; 

pub use base_entity::*;
pub use base_entity_single::*;

#[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 {} )*
    };
}