Merge pull request #826 from influxdata/dom/clone-api-client

refactor: derive Clone for API client
pull/24376/head
kodiakhq[bot] 2021-02-17 17:08:50 +00:00 committed by GitHub
commit d5d4e7a3b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ pub use flight::PerformQuery;
/// .expect("failed to create database");
/// # }
/// ```
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Client {
pub(crate) http: reqwest::Client,