ruwebframe 0.1.8

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
use displaydoc::Display;
use crate::rubase::ruentity;

#[derive(Debug, Display,Default,Clone )]
pub struct GeneralDb {

}

impl ruentity::BaseEntity for GeneralDb {

}
impl GeneralDb {
    pub fn new() -> Self {
        Self {}
    }
    pub fn execute(&self) -> String {
        "execute".to_string()
    }
}