mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-21 04:16:38 +00:00
7 lines
267 B
TypeScript
7 lines
267 B
TypeScript
import { db as mainDb } from "./driver";
|
|
|
|
// SQLite doesn't support separate databases for logs in the same way as Postgres
|
|
// Always use the main database connection for SQLite
|
|
export const logsDb = mainDb;
|
|
export default logsDb;
|
|
export const primaryLogsDb = logsDb; |