Clean up imports

This commit is contained in:
2026-01-10 08:54:34 -06:00
parent 6c0895de07
commit c7b8cd33da
7 changed files with 9 additions and 17 deletions

View File

@@ -1,7 +1,8 @@
// database.ts
// PostgreSQL database access with Kysely query builder and simple migrations
import * as fs from "fs";
import * as fs from "node:fs";
import * as path from "node:path";
import {
type Generated,
Kysely,
@@ -9,7 +10,6 @@ import {
type Selectable,
sql,
} from "kysely";
import * as path from "path";
import { Pool } from "pg";
import type {
AuthStore,