Initial commit with Sveltekit + format files

This commit is contained in:
pheralb
2025-08-21 10:26:07 +01:00
parent ca4f397e0a
commit 459457a7e1
97 changed files with 3892 additions and 9893 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ interface SourceParams {
}
export const getSource = async (params: SourceParams) => {
const response = await fetch(params.url || '');
const response = await fetch(params.url || "");
const content = await response.text();
return content;
};