fmt + fixes newlines

This commit is contained in:
Mylloon 2022-01-04 18:26:00 +01:00
parent 6890b8958f
commit ee11a54195
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 15 additions and 5 deletions

View file

@ -3,7 +3,7 @@
#[derive(Debug)] #[derive(Debug)]
pub struct ConnectionInfoDiscord { pub struct ConnectionInfoDiscord {
pub token: String, pub token: String,
pub prefix: String pub prefix: String,
} }
/// Lance le bot Discord /// Lance le bot Discord

View file

@ -78,8 +78,12 @@ async fn main() {
} }
} }
} }
let mut url = env::var("URL") let mut url = env::var("URL").unwrap_or_else(|_| {
.unwrap_or_else(|_| panic!("{}", erreur::message_erreur("URL non trouvé dans le fichier .env"))); // récupération de l'url panic!(
"{}",
erreur::message_erreur("URL non trouvé dans le fichier .env")
)
}); // récupération de l'url
if url.ends_with('/') { if url.ends_with('/') {
// Si l'url finit par un '/' // Si l'url finit par un '/'
url = url[0..url.len() - 1].to_string(); // on retire le / url = url[0..url.len() - 1].to_string(); // on retire le /

View file

@ -114,7 +114,10 @@ pub async fn team_info(api: &mattermost_api::client::Mattermost, equipe: &str) {
println!("{}", infos.fprint()); println!("{}", infos.fprint());
} }
Err(e) => { 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); println!("{}", res);
} }
Err(e) => { Err(e) => {
println!("[Websocket] {}", erreur::message_erreur(&format!("Error: {}", e))); println!(
"{}",
erreur::message_erreur(&format!("[Websocket] Error: {}", e))
);
} }
} }
} }