ruwebframe 0.1.10

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
// package {{.SinglePKG}}

use crate::rubase::BaseEntity;
use crate::rudi::didto;
use crate::rulog;

#[cfg(test)]
mod tests {
    use crate::domain::rudb::dbsingle::DbSingle;
    use crate::rubase::BeanSingleton;
    use crate::rudi::difactroy::find_bean_di_factroy;
    use super::*;

    #[test]
    fn test_01_make_di() {
        find_bean_di_factroy().unwrap().lock().unwrap().make_di();

    }
    #[test]
    fn test_02_make_di() {
        DbSingle::find_bean().unwrap().lock().unwrap().execute3();

    }

}