1pub mod v1; 2 3#[test] 4fn it_works() { 5 println!("ok"); 6 let r = v1::ConfigSimpleResponse { 7 code: Some(0), 8 info: Some("success".to_string()), 9 }; 10 11 println!("{:?}", r); 12}