mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-05 13:08:05 +08:00
12 lines
196 B
Rust
12 lines
196 B
Rust
|
mod front_of_house {
|
||
|
pub mod hosting {
|
||
|
pub fn add_to_waitlist() {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
use crate::front_of_house::hosting::add_to_waitlist;
|
||
|
|
||
|
pub fn eat_at_restaurant() {
|
||
|
add_to_waitlist();
|
||
|
}
|