Skip to main content

gearbox_rs_postgres/
lib.rs

1mod client;
2mod config;
3mod entity;
4mod error;
5mod repository;
6
7pub use client::PgClient;
8pub use config::{PgConfig, SchemaConfig};
9pub use entity::PgEntity;
10pub use error::PgError;
11pub use repository::PgRepository;
12
13// Re-exports for macro use
14pub use sqlx::Row;
15pub use sqlx::postgres::PgRow;
16pub use sqlx::query;
17pub use sqlx::query_scalar;