github-actions[bot]
GitHub deploy: e31f680788910b04a1709271979c1b416f1b839a
efe3ae2
raw
history blame contribute delete
405 Bytes
<script>
import { onMount } from 'svelte';
import { functions } from '$lib/stores';
import { getFunctions } from '$lib/apis/functions';
import Functions from '$lib/components/admin/Functions.svelte';
onMount(async () => {
await Promise.all([
(async () => {
functions.set(await getFunctions(localStorage.token));
})()
]);
});
</script>
{#if $functions !== null}
<Functions />
{/if}