chore: remove unused error mod

This commit is contained in:
Dmitriy Pleshevskiy 2021-10-22 00:18:37 +03:00
parent 5a978b1069
commit f3ab9f4e46
4 changed files with 0 additions and 6 deletions

View File

@ -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

View File

@ -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;

View File

@ -1,4 +1,3 @@
use crate::error;
#[cfg(feature = "nightly")]
use crate::syn::TransactionClient;
use crate::syn::{ConnectionClient, PersistencePool};

View File

@ -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