ruwebframe 0.1.6

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
use crate::rubase::{BaseEntitySingle };
use crate::rubase::get_self::GetSelf;
use crate::rudi::difactroy::find_bean_di_factroy;
use crate::rudi::find_bean_di_example;
use crate::rulog;

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

    println!("{}", example.id);
}
#[test]
fn test_02_make_di() {
    find_bean_di_factroy().unwrap().make_di();
}