chore: remove unused error mod
This commit is contained in:
parent
5a978b1069
commit
f3ab9f4e46
4 changed files with 0 additions and 6 deletions
|
@ -1,5 +1,3 @@
|
|||
use crate::error;
|
||||
|
||||
/// The pool is one of the main features to be realized in persistence.
|
||||
///
|
||||
/// Any implementation (database, file storage, memory or others) must be able to get a connection
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#[cfg(feature = "nightly")]
|
||||
use crate::asyn::TransactionClient;
|
||||
use crate::asyn::{ConnectionClient, PersistencePool};
|
||||
use crate::error;
|
||||
|
||||
pub use bb8::{Pool, PooledConnection};
|
||||
pub use bb8_postgres::tokio_postgres;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use crate::error;
|
||||
#[cfg(feature = "nightly")]
|
||||
use crate::syn::TransactionClient;
|
||||
use crate::syn::{ConnectionClient, PersistencePool};
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
use crate::error;
|
||||
|
||||
/// The pool is one of the main features to be realized in persistence.
|
||||
///
|
||||
/// Any implementation (database, file storage, memory or others) must be able to get a connection
|
||||
|
|
Reference in a new issue