rename batch_handler to handler

This commit is contained in:
ad hoc 2022-05-25 08:46:06 +02:00
parent 0f9c134114
commit 64654ef7c3
No known key found for this signature in database
GPG Key ID: 4F00A782990CC643
6 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
use async_trait::async_trait;
pub use batch_handlers::empty_handler::EmptyBatchHandler;
pub use batch_handlers::snapshot_handler::SnapshotHandler;
pub use handlers::empty_handler::EmptyBatchHandler;
pub use handlers::snapshot_handler::SnapshotHandler;
pub use scheduler::Scheduler;
pub use task_store::TaskFilter;
@ -14,8 +14,8 @@ use batch::Batch;
use error::Result;
pub mod batch;
mod batch_handlers;
pub mod error;
mod handlers;
mod scheduler;
pub mod task;
mod task_store;