fmt + fixes newlines
This commit is contained in:
parent
6890b8958f
commit
ee11a54195
3 changed files with 15 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
|||
#[derive(Debug)]
|
||||
pub struct ConnectionInfoDiscord {
|
||||
pub token: String,
|
||||
pub prefix: String
|
||||
pub prefix: String,
|
||||
}
|
||||
|
||||
/// Lance le bot Discord
|
||||
|
|
|
@ -78,8 +78,12 @@ async fn main() {
|
|||
}
|
||||
}
|
||||
}
|
||||
let mut url = env::var("URL")
|
||||
.unwrap_or_else(|_| panic!("{}", erreur::message_erreur("URL non trouvé dans le fichier .env"))); // récupération de l'url
|
||||
let mut url = env::var("URL").unwrap_or_else(|_| {
|
||||
panic!(
|
||||
"{}",
|
||||
erreur::message_erreur("URL non trouvé dans le fichier .env")
|
||||
)
|
||||
}); // récupération de l'url
|
||||
if url.ends_with('/') {
|
||||
// Si l'url finit par un '/'
|
||||
url = url[0..url.len() - 1].to_string(); // on retire le /
|
||||
|
|
|
@ -114,7 +114,10 @@ pub async fn team_info(api: &mattermost_api::client::Mattermost, equipe: &str) {
|
|||
println!("{}", infos.fprint());
|
||||
}
|
||||
Err(e) => {
|
||||
println!("[Display Team Info] {}", erreur::message_erreur(&format!("Error: {}", e)));
|
||||
println!(
|
||||
"{}",
|
||||
erreur::message_erreur(&format!("[Display Team Info] Error: {}", e))
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -156,7 +159,10 @@ pub async fn start_mattermost(connection: ConnectionInfoWebsocket) {
|
|||
println!("{}", res);
|
||||
}
|
||||
Err(e) => {
|
||||
println!("[Websocket] {}", erreur::message_erreur(&format!("Error: {}", e)));
|
||||
println!(
|
||||
"{}",
|
||||
erreur::message_erreur(&format!("[Websocket] Error: {}", e))
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue