1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! Audit data generators.
//!
//! This module provides generators for audit-related data:
//! - Audit engagements per ISA 210/220
//! - Workpapers per ISA 230
//! - Audit evidence per ISA 500
//! - Risk assessments per ISA 315/330
//! - Audit findings per ISA 265
//! - Professional judgments per ISA 200
//! - External confirmations per ISA 505 (`audit::confirmation_generator`)
//!
//! Note: `ConfirmationGenerator` / `ConfirmationGeneratorConfig` are NOT
//! wildcard-re-exported from this module to avoid a name collision with the
//! identically-named types in `standards::confirmation_generator`. Import
//! them via the full path:
//! ```ignore
//! use datasynth_generators::audit::confirmation_generator::{
//! ConfirmationGenerator, ConfirmationGeneratorConfig,
//! };
//! ```
//!
//! Similarly, the generators below are NOT wildcard-re-exported to avoid
//! potential name collisions. Import them via their full module paths:
//! ```ignore
//! use datasynth_generators::audit::procedure_step_generator::{
//! ProcedureStepGenerator, ProcedureStepGeneratorConfig,
//! };
//! use datasynth_generators::audit::sample_generator::{
//! SampleGenerator, SampleGeneratorConfig,
//! };
//! use datasynth_generators::audit::analytical_procedure_generator::{
//! AnalyticalProcedureGenerator, AnalyticalProcedureGeneratorConfig,
//! };
//! use datasynth_generators::audit::internal_audit_generator::{
//! InternalAuditGenerator, InternalAuditGeneratorConfig,
//! };
//! use datasynth_generators::audit::related_party_generator::{
//! RelatedPartyGenerator, RelatedPartyGeneratorConfig,
//! };
//! ```
pub
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;