diff --git a/src/store/adapter/mysql/builder.rs b/src/store/adapter/mysql/builder.rs index 8687c1f..34213f1 100644 --- a/src/store/adapter/mysql/builder.rs +++ b/src/store/adapter/mysql/builder.rs @@ -1,4 +1,4 @@ -use sqlx::{mysql::MySqlPoolOptions, MySqlPool}; +pub use sqlx::{mysql::MySqlPoolOptions, MySqlPool}; use std::sync::Arc; use crate::{StoreError, DEFAUTL_TABLE_NAME}; diff --git a/src/store/adapter/postgres/builder.rs b/src/store/adapter/postgres/builder.rs index a2e77dc..15e8c78 100644 --- a/src/store/adapter/postgres/builder.rs +++ b/src/store/adapter/postgres/builder.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use sqlx::{postgres::PgPoolOptions, PgPool}; +pub use sqlx::{postgres::PgPoolOptions, PgPool}; use crate::{StoreError, DEFAUTL_TABLE_NAME}; diff --git a/src/store/adapter/redis/builder.rs b/src/store/adapter/redis/builder.rs index 950ea92..761e5f3 100644 --- a/src/store/adapter/redis/builder.rs +++ b/src/store/adapter/redis/builder.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use redis::Client; +pub use redis::Client; use crate::StoreError;