ruwebframe 0.1.4

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
use crate::rubase::{BaseEntitySingle };
use crate::rubase::getself::GetSelf;
use crate::rudi::difactroy::find_bean_difactroy;
use crate::rudi::find_bean_diexample;
use crate::rulog;

#[test]
fn test_01_example() {
    let   example = find_bean_diexample().unwrap();

    println!("{}", example.id);
}
#[test]
fn test_02_make_di() {
    find_bean_difactroy().unwrap().make_di();
}
#[test]
fn test_03_get_self() {
    let mut example = find_bean_diexample().unwrap().get_self();
    example.id = 100;
    rulog::info(example.to_json().as_str());
}