freshyo/packages/db_helper_postgres/index.ts
2026-03-25 01:43:02 +05:30

14 lines
407 B
TypeScript

// Database Helper - PostgreSQL
// Main entry point for the package
// Re-export database connection
export { db } from './src/db/db_index';
// Re-export schema
export * from './src/db/schema';
// Re-export helper methods
export * from './src/helper_methods/banner';
export * from './src/helper_methods/complaint';
export * from './src/helper_methods/const';
export * from './src/helper_methods/coupon';