Files
kycnotme/web/src/server-init.ts

10 lines
223 B
TypeScript
Raw Normal View History

2025-06-09 10:00:55 +00:00
/* eslint-disable @typescript-eslint/no-empty-function */
import { startListener } from './lib/postgresListeners'
await startListener({
error: console.error,
warn: console.warn,
info: () => {},
debug: () => {},
})