mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
10 lines
298 B
Svelte
10 lines
298 B
Svelte
<script lang="ts">
|
|
import { initSearcher } from '../commands';
|
|
import { functionsSearcher } from '../searchers';
|
|
import Template from './template.svelte';
|
|
|
|
const { search, results } = initSearcher(functionsSearcher);
|
|
</script>
|
|
|
|
<Template options={$results} bind:search={$search} />
|