mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { Storages } from '../packages/ditto/storages.ts';
|
|
|
|
// This migrates kysely internally.
|
|
const kysely = await Storages.kysely();
|
|
|
|
// Close the connection before exiting.
|
|
await kysely.destroy();
|
|
|
|
Deno.exit();
|