File size: 376 Bytes
fb8fccc | 1 2 3 4 5 6 7 8 9 10 11 | //! Stable demo-data boundary for the deliveries app.
//!
//! Other layers should import `generate` and `DemoData` from here instead of
//! reaching into city-specific seed modules. That keeps the public data surface
//! small while the Philadelphia, Hartford, and Firenze fixtures can stay split
//! for readability.
mod data_seed;
pub use data_seed::{generate, DemoData};
|