Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Nov 26, 2023
1 parent 31a6edb commit f855939
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions command/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
use cliclack::{confirm, input, intro, multiselect, select, spinner, log};
use cliclack::{confirm, input, intro, log, multiselect, select, spinner};
use colored::Colorize;
use local_ip_address::local_ip;
use std::{collections::HashMap, io::Error, path::{Path, PathBuf}};
use std::{
collections::HashMap,
io::Error,
path::{Path, PathBuf},
};

const BANNER: &str = r"
|\_ _ _ _
Expand Down Expand Up @@ -170,7 +174,7 @@ fn setup() -> std::io::Result<()> {
services
.iter()
.filter_map(|service| service.compose_profile.clone())
.flatten()
.flatten()
.map(std::string::ToString::to_string)
.collect(),
),
Expand Down

0 comments on commit f855939

Please sign in to comment.