Skip to content

Commit

Permalink
Fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Aug 18, 2024
1 parent 7d94193 commit 76bfc94
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions azure-kusto-data/src/connection_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ use std::time::Duration;

use crate::client_details;
use crate::client_details::{ClientDetails, ConnectorDetails};
use crate::cloud_info::CloudInfo;
use crate::credentials::{CallbackTokenCredential, ConstTokenCredential};
use crate::error::ConnectionStringError;
use azure_core::auth::TokenCredential;
use azure_core::Url;
use azure_identity::{AppServiceManagedIdentityCredential, AzureCliCredential, ClientSecretCredential, DefaultAzureCredential};
use azure_identity::{
AppServiceManagedIdentityCredential, AzureCliCredential, ClientSecretCredential,
DefaultAzureCredential,
};
use hashbrown::HashMap;
use once_cell::sync::Lazy;
use crate::cloud_info::CloudInfo;
use crate::credentials::{CallbackTokenCredential, ConstTokenCredential};
use crate::error::ConnectionStringError;

/// Function that handles the device code flow.
pub type DeviceCodeFunction = Arc<dyn Fn(&str) -> String + Send + Sync>;
Expand Down

0 comments on commit 76bfc94

Please sign in to comment.