From adf89e2132ffd48a1e64ad527f38790d6e74072a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 4 Jan 2022 22:51:52 +0100 Subject: [PATCH] Add API and room to discord --- src/main.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6a36dd6..e66d055 100644 --- a/src/main.rs +++ b/src/main.rs @@ -89,7 +89,8 @@ async fn main() { url = url[0..url.len() - 1].to_string(); // on retire le / } - let api = mattermost::connexion(&token_mattermost, &pseudo, &mot_de_passe, &url).await; // connexion à mattermost + let api = mattermost::connexion(&token_mattermost, &pseudo, &mot_de_passe, &url).await; // api utilisé par mattermost + let api_discord = mattermost::connexion(&token_mattermost, &pseudo, &mot_de_passe, &url).await; // api utilisé par discord pour mattermost // On affiche les infos d'une team let equipe = env::var("EQUIPE").unwrap_or_else(|_| { @@ -109,10 +110,12 @@ async fn main() { }) .await; - // Bloque le thread principale + // Bloque le thread principale en quelque sorte discord::start_discord(discord::ConnectionInfoDiscord { token: token_discord, prefix, + api: api_discord, + salon: String::from("temp"), }) .await; }