jbuild 0.1.8

High-performance Java build tool supporting Maven and Gradle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared domain concepts used across bounded contexts
//!
//! This module contains value objects and domain primitives that are shared
//! across multiple bounded contexts.

pub mod events;
pub mod utils;
pub mod value_objects;

pub use events::*;
pub use utils::*;
pub use value_objects::*;