ruwebframe 0.1.2

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::rudi::{diexample_init, difactroy};

#[test]
fn test_01_de() {
    let de=diexample_init::find_bean_diexample().unwrap();
    println!("{}", de.id);
}
#[test]
fn test_02_make_di() {
    difactroy::find_bean_difactroy().unwrap().make_di();
}