This commit is contained in:
2026-05-01 14:08:33 +07:00
parent 4eb90e7c52
commit 30be9383b5
8 changed files with 125 additions and 0 deletions

1
restaurant/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
target/

7
restaurant/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "restaurant"
version = "0.1.0"

6
restaurant/Cargo.toml Normal file
View File

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

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

@@ -0,0 +1,16 @@
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() {}
}
}