Skip to content

Commit

Permalink
Merge pull request #3 from hmac/hmac-fix-sqlx-ref
Browse files Browse the repository at this point in the history
fix: Ensure sqlx reference is unambiguous
  • Loading branch information
nlopes committed Aug 30, 2023
2 parents 2f08ee1 + f167e9a commit cd47c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sqlite/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ pub(crate) async fn write_structure_sql<P: AsRef<std::path::Path>, Q: AsRef<std:
#[cfg(feature = "sqlx")]
mod sqlx;
#[cfg(feature = "sqlx")]
use sqlx::fetch_structure_sql;
use crate::sqlite::sqlx::fetch_structure_sql;
#[cfg(feature = "sqlx")]
pub(crate) use sqlx::DEFAULT_CONNECTION_URL;
pub(crate) use crate::sqlite::sqlx::DEFAULT_CONNECTION_URL;

#[cfg(feature = "diesel")]
mod diesel;
Expand Down

0 comments on commit cd47c38

Please sign in to comment.