function afficherPlanning(nameIntervenant){
nameIntervenant = nameIntervenant.replace(".",""); //on enlève les points du nom de l'intervenant
nameIntervenant = nameIntervenant.replace(" ",""); //on enlève les espaces du nom de l'intervenant
nameIntervenant = nameIntervenant.replace("-",""); //on enlève les tirets du nom de l'intervenant
var file = fs.readFileSync("database/planningIntervenant"+nameIntervenant+".planinfo", "utf8");
console.log(file);
}
module.exports.choixIntervenant = choixIntervenant;
// Retour au choix
var menu = require("./main.js");
console.log(menu);