give data

This commit is contained in:
Mylloon 2022-01-05 00:12:24 +01:00
parent b6719aee2f
commit 74fb2fe396
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -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;
}