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::rubase::rudto::cfgdto::rpc_dto::RpcDto;
    use crate::rudi::difactroy::find_bean_di_factroy;
    use super::*;

    #[test]
    fn test_01_find_bean() {
        let dto = didto::find_bean_struct_info();
        println!("{:?}", dto);

        rulog::info(dto.unwrap()  );

    }
    #[test]
    fn test_02_rpc_dto() {
        let rpc_dto = RpcDto::default();

        println!("{:?}", rpc_dto);
        find_bean_di_factroy().unwrap().lock().unwrap().make_di();
    }
    #[test]
    fn test_03_rpc_dto() {
        let rpc_dto = RpcDto::default();

        println!("{:?}", rpc_dto);
        find_bean_di_factroy().unwrap().lock().unwrap().make_suites();
    }

}