mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-22 13:38:04 +08:00
14 lines
265 B
Rust
14 lines
265 B
Rust
|
mod front_of_house {
|
||
|
pub mod hosting {
|
||
|
pub fn add_to_waitlist() {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn eat_at_restaurant() {
|
||
|
// Absolute path
|
||
|
crate::front_of_house::hosting::add_to_waitlist();
|
||
|
|
||
|
// Relative path
|
||
|
front_of_house::hosting::add_to_waitlist();
|
||
|
}
|