(async function(){ const tournaments = await SSAPI.get('/tournaments').catch(()=>[]); const matches = await SSAPI.get('/matches').catch(()=>[]); const tWrap = document.getElementById('tournaments'); tWrap.innerHTML = tournaments.map(t=>`
Aucun tournoi
'; const mWrap = document.getElementById('matches'); mWrap.innerHTML = matches.map(m=>`Aucun match
'; })();