ruwebframe 0.1.0

A brief description of your crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::rudi::ditemplate::struct_init;

#[test]
fn test_001() {

    if let Some(db) = struct_init::find_bean_database() {

        println!("{:?}", *db);

    }
}
#[test]
fn test_002() {

    let db=struct_init::Database::new();
    println!("{:?}", db);
}