diff options
| author | Fuwn <[email protected]> | 2024-07-07 21:55:32 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-07 21:55:32 -0700 |
| commit | 3c85251b260d7abbb1b3f48f2621be9b4e45124c (patch) | |
| tree | 654ba8280d2c7105049527a00e9c2fde121d15fa /src/routes | |
| parent | feat(attributions): add a few (diff) | |
| download | due.moe-3c85251b260d7abbb1b3f48f2621be9b4e45124c.tar.xz due.moe-3c85251b260d7abbb1b3f48f2621be9b4e45124c.zip | |
feat(tools): sequel catcher
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/tools/[tool]/+page.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/tools/[tool]/+page.svelte b/src/routes/tools/[tool]/+page.svelte index 63596844..dee9b4e6 100644 --- a/src/routes/tools/[tool]/+page.svelte +++ b/src/routes/tools/[tool]/+page.svelte @@ -18,6 +18,7 @@ import root from '$lib/Utility/root.js'; import Popup from '$lib/Layout/Popup.svelte'; import HololiveBirthdays from '$lib/Tools/HololiveBirthdays.svelte'; + import SequelCatcher from '$lib/Tools/SequelCatcher.svelte'; export let data; @@ -77,5 +78,7 @@ <Hayai /> {:else if tool === 'hololive_birthdays'} <HololiveBirthdays /> + {:else if tool === 'sequel_catcher'} + <SequelCatcher user={data.user} /> {/if} {/if} |