This commit is contained in:
2025-12-22 11:02:13 +00:00
parent fb38f07d80
commit 17f49d642d
2 changed files with 17 additions and 0 deletions

6
restaurant/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "restaurant"
version = "0.1.0"
edition = "2024"
[dependencies]

11
restaurant/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
mod front_of_house {
mod hosting {
fn add_to_waitlist() {}
fn seat_at_table() {}
}
mod serving {
fn take_order() {}
fn serve_order() {}
fn take_payment() {}
}
}