From 74fb2fe396bd5add6275ef7056de648aed85fe2a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 5 Jan 2022 00:12:24 +0100 Subject: [PATCH] give data --- src/main.rs | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index e66d055..acf4314 100644 --- a/src/main.rs +++ b/src/main.rs @@ -106,16 +106,29 @@ async fn main() { // Tâche en paralèlle mattermost::start_mattermost(mattermost::ConnectionInfoWebsocket { api, - token: token_mattermost, /* , prefix */ + token: token_mattermost.clone(), /* , prefix */ }) .await; + /* On créer notre structure avec les identifiants Mattermost + * que notre fichier Discord à besoin pour envoyer des message + * sur Mattermost. */ + let id = discord::IdentifiantsMattermost { + token: token_mattermost, + user: pseudo, + pass: mot_de_passe, + url, + }; + // Bloque le thread principale en quelque sorte - discord::start_discord(discord::ConnectionInfoDiscord { - token: token_discord, - prefix, - api: api_discord, - salon: String::from("temp"), - }) + discord::start_discord( + discord::ConnectionInfoDiscord { + token: token_discord, + prefix, + api: api_discord, + salon: String::from("temp"), + }, + id, + ) .await; }