Tourniquet integration with the celery library.
```rust # # let rr = RoundRobin::new( vec!["https://api01", "https://api02"], TonicConnector::default(), );
rr.run(|channel| async move { grpc::greetingclient::GreetingClient::new(channel.asref().clone()) .hello(grpc::Message::default()) .await?; Ok(()) }).await?; ```
License: MIT