feat: rename to persistence

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-10-02 21:55:43 +02:00
parent 97173f1a79
commit 4bc740b94a
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
mod impls;
mod outbox;
mod persistence;
mod publisher;
mod subscriber;
mod transport;
@ -14,8 +14,8 @@ pub mod errors {
}
use crunch_traits::Event;
pub use impls::Persistence;
pub use outbox::OutboxHandler;
pub use persistence::Persistence;
pub use publisher::Publisher;
pub use subscriber::Subscriber;
pub use transport::Transport;