ruwebframe 0.1.8

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::rubase::BaseEntity;
use crate::rudi::didto;
use crate::rulog;
#[cfg(test)]
mod tests {
    use super::*;

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

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

    }

}