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

# waiting

```rust
use std::{thread, time::Duration};

use aok::{Result, OK};
use waiting::Waiting;

#[test]
fn test() -> Result<()> {
  let ing = Waiting::new("refresh version");
  thread::sleep(Duration::from_secs(3));
  ing.end("✅ task done");
  OK
}
```