trpl-zh-cn/listings/ch07-managing-growing-projects/listing-07-21-and-22/src/lib.rs
2023-01-16 17:34:52 +08:00

8 lines
125 B
Rust
Executable File

mod front_of_house;
pub use crate::front_of_house::hosting;
pub fn eat_at_restaurant() {
hosting::add_to_waitlist();
}