Files
core/src/core/database/index.js
T
2026-04-12 12:50:14 -04:00

39 lines
514 B
JavaScript

/**
* Zen Database Module
* Complete database utilities for PostgreSQL
*/
// Core database functions
export {
query,
queryOne,
queryAll,
transaction,
getPool,
closePool,
testConnection
} from './db.js';
// CRUD helper functions
export {
create,
findById,
find,
findOne,
updateById,
update,
deleteById,
deleteWhere,
count,
exists
} from './crud.js';
// Database initialization
export {
initDatabase,
createAuthTables,
tableExists,
dropAuthTables
} from './init.js';