mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-17 21:44:23 +01:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { Storages } from '@/storages.ts';
|
|
|
|
// This migrates kysely internally.
|
|
const kysely = await Storages.kysely();
|
|
|
|
// Close the connection before exiting.
|
|
await kysely.destroy();
|
|
|
|
Deno.exit();
|