function getRole(){ return new Promise((resolve,reject)=>{ if(true){ resolve(2) }else{ reject('error') } }) } export{ getRole }