mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 21:31:22 +00:00
17 lines
256 B
Rust
17 lines
256 B
Rust
use crate::backend::Backend;
|
|
|
|
mod connection;
|
|
|
|
pub use connection::Connection;
|
|
|
|
pub(crate) mod protocol;
|
|
|
|
pub mod types;
|
|
|
|
pub struct Postgres;
|
|
|
|
impl Backend for Postgres {
|
|
type RawRow = protocol::DataRow;
|
|
type TypeMetadata = types::TypeMetadata;
|
|
}
|