processor/src/lib.rs
Bruno BELANYI c7e64692e6 lib: add 'Transaction' variants
Represent each enum variant with its own type to allow stronger typing
when processing only a singular type of transactions.
2022-08-23 14:05:03 +02:00

6 lines
91 B
Rust

pub mod core;
pub use crate::core::*;
pub mod transaction;
pub use crate::transaction::*;