Skip to content

Commit

Permalink
fix: unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
bittermandel committed Apr 1, 2024
1 parent a02f011 commit bee90f7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dialoguer = { version = "0.10.4", features = ["fuzzy-select"] }
difference = "2.0"
dirs-next = "2.0.0"
home = "0.5.5"
http = "1.1.0"
indexmap = { version = "2.2.5", features = ["serde"] }
oauth2 = "4.4.2"
once_cell = "1.18.0"
Expand Down
3 changes: 1 addition & 2 deletions src/commands/services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use anyhow::{anyhow, Result};
use clap::{Parser, Subcommand};
use dialoguer::{FuzzySelect, Input};
use difference::{Changeset, Difference};
use http::Uri;
use serde::Deserialize;
use std::fs::File;
use std::io::Read;
Expand Down Expand Up @@ -402,7 +401,7 @@ impl Logs {

let manifest = self.read_manifest()?;

let logurl: Uri = format!(
let logurl: tungstenite::http::Uri = format!(
"{}/orgs/{}/envs/{}/svcs/{}/logs",
base.user_config().get_url().replace("http", "ws"),
org_name,
Expand Down
2 changes: 1 addition & 1 deletion src/config/user.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use camino::Utf8PathBuf;
use config::Config;
use tungstenite::http::Uri;


use crate::Cli;

Expand Down

0 comments on commit bee90f7

Please sign in to comment.