mreq
use ;
use constructor;
extern "C"
async
use aok::{Result, OK};
use static_init::constructor;
#[constructor(0)]
extern "C" fn init() {
loginit::init()
}
#[tokio::test]
async fn test() -> Result<()> {
// let mut req = Mreq::new(["httpstat.us", "jsd.onmicrosoft.cn"], []);
// let v = req.get("npm/i18md/.v").await?;
// let v = String::from_utf8_lossy(&v);
// info!("{}", v);
// let v = req.get("npm/i18md/.v").await?;
// let v = String::from_utf8_lossy(&v);
// info!("{}", v);
OK
}