Merge branch 'master' into ayrat555/change-schema

This commit is contained in:
Pmarquez 2022-08-29 20:24:06 +00:00 committed by GitHub
commit a0cb08ab53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,6 @@
pub mod async_queue;
pub mod async_runnable;
pub mod async_worker;
pub mod async_worker_pool;
@ -8,3 +9,4 @@ pub use async_runnable::AsyncRunnable;
pub use async_runnable::Error as AsyncError;
pub use async_worker::*;
pub use async_worker_pool::*;

View file

@ -1,4 +1,5 @@
pub mod error;
pub mod queue;
pub mod runnable;
pub mod schema;