1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use ApiResult;
use crate;
// #[tokio::test]
// async fn test_via_api() -> ApiResult<()> {
// init_logger();
// let api = TheApi::default();
// let api2 = api.with_endpoint(("127.0.0.1", 80));
// log::info!("api2 = {:?}", api2);
// let api3 = api.with_router(ApiRouters::random(&[
// ("127.0.0.1", 80).into(),
// ("127.0.0.1", 80).into(),
// ("127.0.0.1", 80).into(),
// ]));
// log::info!("api3 = {:?}", api3);
// Ok(())
// }
async