call function from the mattermost file

This commit is contained in:
Mylloon 2021-12-21 09:21:41 +01:00
parent 9b3aeaf6ac
commit 0abc1f7042
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,8 +1,10 @@
use dotenv::dotenv; use dotenv::dotenv;
use std::env; use std::env;
mod mattermost;
fn main() { fn main() {
// Vérification si fichier .env trouvé dotenv().expect("Le fichier .env n'a pas été trouvé..."); // vérification si fichier .env trouvé
dotenv().expect("Le fichier .env n'a pas été trouvé..."); let token = env::var("TOKEN").expect("Token non trouvé dans le fichier .env"); // récupération du token
let _token = env::var("TOKEN").expect("Token non trouvé dans le fichier .env"); mattermost::connexion(&token); // connexion à mattermost
} }