File size: 345 Bytes
b7e7f16 | 1 2 3 4 5 6 7 8 9 10 | //! Stable public entrypoint for demo data.
//!
//! Other modules should import from `crate::data` instead of reaching directly
//! into `data_seed/`. That keeps the app's public data surface small even though
//! the generator itself is split across many focused files.
mod data_seed;
pub use data_seed::{generate, list_demo_data, DemoData};
|