Reimport Either used in Executor (#1562)

* Reimport Either used in Executor

* Re-import sqlx-core

* Update src/lib.rs

Co-authored-by: Austin Bonander <austin.bonander@gmail.com>

* Apply fmt

Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
This commit is contained in:
Douman 2021-12-30 06:01:16 +09:00 committed by GitHub
parent f79d321b78
commit 04109d9323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ pub mod column;
pub mod statement;
mod common;
pub use either::Either;
pub mod database;
pub mod describe;
pub mod executor;

View File

@ -30,6 +30,7 @@ pub use sqlx_core::transaction::{Transaction, TransactionManager};
pub use sqlx_core::type_info::TypeInfo;
pub use sqlx_core::types::Type;
pub use sqlx_core::value::{Value, ValueRef};
pub use sqlx_core::Either;
#[doc(inline)]
pub use sqlx_core::error::{self, Error, Result};