const generateGuid = async () => {
  const url = "https://faas.szolar.ly/function/guidsh-uuid";
  const response = await fetch(url);
  const guids = await response.text();
  console.log(guids);
}

generateGuid();