Skip to content

Commit

Permalink
fix: fix blocking features (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrat555 authored Apr 22, 2024
1 parent 22cd819 commit fab5c1c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion fang/src/blocking.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
mod error;

#[cfg(feature = "blocking-mysql")]
pub mod mysql_schema;

#[cfg(feature = "blocking-sqlite")]
pub mod sqlite_schema;

#[cfg(feature = "blocking-postgres")]
pub mod postgres_schema;

pub mod queue;
pub mod runnable;
pub mod sqlite_schema;
pub mod worker;
pub mod worker_pool;

Expand Down

0 comments on commit fab5c1c

Please sign in to comment.