mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
8 lines
125 B
Rust
Executable File
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();
|
|
}
|