kmp_application/commands/mod.rs
1pub mod command_application_service;
2pub mod memory_projection;
3pub mod update_context;
4
5pub use command_application_service::CommandApplicationService;
6pub use memory_projection::projection_mutations_for_context_event;
7pub use update_context::{
8 AcceptedVersion, NoopProjectionWriter, UpdateContextChange, UpdateContextCommand,
9 UpdateContextOutcome, UpdateContextUseCase,
10};