WIP
The library allows to create scheduled tasks via Redis for Rust.
```rust async fn handle(request: String) {}
producer.schedule("Hello!".to_string(), now() + 1000.).await; ```
That means the handle will be run in 1 second.
You can customize a format of an event for redis. Write your wrapper over RedisBackend. See redis_json example
cargo add taskline