Files
100-exercises-to-learn-rust/exercises/07_threads/13_without_channels/src/lib.rs
2024-05-12 22:47:45 +02:00

8 lines
313 B
Rust

// TODO: You don't actually have to change anything in the library itself!
// We mostly had to **remove** code (the client type, the launch function, the command enum)
// that's no longer necessary.
// Fix the `todo!()` in the testing code and see how the new design can be used.
pub mod data;
pub mod store;