Skip to content

Commit

Permalink
Use the same urls for debug and release (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton authored Sep 13, 2023
1 parent 85893a7 commit 8cae558
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions crates/bitwarden/src/client/client_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,6 @@ pub struct ClientSettings {
pub device_type: DeviceType,
}

#[cfg(debug_assertions)]
impl Default for ClientSettings {
fn default() -> Self {
Self {
identity_url: "https://localhost:8080/identity".into(),
api_url: "https://localhost:8080/api".into(),
user_agent: "Bitwarden Rust-SDK".into(),
device_type: DeviceType::SDK,
}
}
}

#[cfg(not(debug_assertions))]
impl Default for ClientSettings {
fn default() -> Self {
Self {
Expand Down

0 comments on commit 8cae558

Please sign in to comment.