Star count

This commit is contained in:
2024-09-28 00:53:37 +03:00
parent 19c29b6fb2
commit 041262d09b
6 changed files with 73 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
import type {PageServerLoad} from "./$types";
import getStars from "$lib/getStars";
export const load: PageServerLoad = async () => {
return {
starCount: await getStars('anatolykopyl')
};
}