We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4bb2ae commit 983de2eCopy full SHA for 983de2e
1 file changed
postgres/src/lib.rs
@@ -3,9 +3,9 @@ use lazy_static::lazy_static;
3
#[cfg(feature = "runtime")]
4
use tokio::runtime::{self, Runtime};
5
6
+mod client;
7
8
mod config;
-mod client;
9
mod copy_out_reader;
10
mod portal;
11
mod query;
@@ -18,9 +18,9 @@ mod transaction;
18
#[cfg(test)]
19
mod test;
20
21
+pub use crate::client::*;
22
23
pub use crate::config::*;
-pub use crate::client::*;
24
pub use crate::copy_out_reader::*;
25
pub use crate::portal::*;
26
pub use crate::query::*;
0 commit comments