text_document_common/direct_access/
use_cases.rs1pub mod create;
4pub mod create_orphan;
5pub mod get;
6pub mod get_relationship;
7pub mod get_relationship_count;
8pub mod get_relationship_in_range;
9pub mod get_relationship_many;
10pub mod move_relationship;
11pub mod remove;
12pub mod set_relationship;
13pub mod traits;
14pub mod update;
15
16pub use create::{CreateUseCase, OwnerStrategy, UndoableCreateUseCase};
17pub use create_orphan::*;
18pub use get::*;
19pub use get_relationship::*;
20pub use get_relationship_count::*;
21pub use get_relationship_in_range::*;
22pub use get_relationship_many::*;
23pub use move_relationship::*;
24pub use remove::*;
25pub use set_relationship::*;
26pub use traits::*;
27pub use update::*;