call function from the mattermost file
This commit is contained in:
parent
9b3aeaf6ac
commit
0abc1f7042
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue