dev1/backend/config/mysqlPool.js
Josh 3aef4502f8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Field-level encryption implemented
2025-08-06 19:44:50 +00:00

17 lines
371 B
JavaScript

// backend/config/mysqlPool.js
import {
query as queryWrapped,
exec as executeWrapped,
pool as rawPool,
getConnection,
end
} from '../shared/db/withEncryption.js'; // ../ (up one)
// then shared/…
export default {
query : queryWrapped,
execute : executeWrapped,
getConnection,
end,
raw: rawPool
};