mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-30 07:44:43 -05:00
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { seed } from "~/db/seed";
|
|
|
|
const startedAt = Date.now();
|
|
|
|
await seed();
|
|
|
|
// biome-ignore lint/suspicious/noConsole: CLI script output
|
|
console.log(`Seeded in ${((Date.now() - startedAt) / 1000).toFixed(1)}s`);
|