blob: 0b2e3b1bf994f644d186f0dd4f9b224a1f88ca8d [file]
export async function getUser(lang) {
try {
const result = await fetch(`/user/${lang}/index.json`);
const versionJson = await result.json();
return versionJson;
} catch (e) {}
return [];
}