1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[‼️]: ✏️README.mdt

# iget

```rust
use aok::{Result, OK};

#[tokio::test]
async fn main() -> Result<()> {
  iget::down(
    "https://www.win-rar.com/fileadmin/winrar-versions/winrar/winrar-x64-624.exe",
    "test.zip",
  )
  .await?;
  OK
}
```