todoapp-app 0.2.0

tda use cases: orchestrate the core + ports (decide/apply).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! tda use cases — orchestrate the domain core through the ports (spec §5, §10).
//!
//! Every mutation is a method on [`Services`]: build a command → `decide` →
//! `apply` → persist (task-local), or graph-validated structure ops.

mod aggregate;
mod import_sp;
mod io;
mod query;
mod service;
mod tasks;

pub use aggregate::Aggregate;
pub use io::Export;
pub use query::QueryHit;
pub use service::{Error, Services, TaskSnapshot};
pub use tasks::Anchor;