Skip to main content

notification/
lib.rs

1//! Transactional notification business ledger for Lenso.
2
3mod contracts;
4mod domain;
5mod error;
6mod events;
7mod migrations;
8pub mod operator;
9mod plugin;
10mod public;
11mod repository;
12mod runtime;
13mod snapshot;
14
15pub use operator::{NotificationOperator, NotificationOperatorError};
16pub use plugin::{NotificationConfig, NotificationConfigError};
17
18#[cfg(test)]
19mod postgres_tests;