Make add_to_waitlist function accessible

This commit is contained in:
Manuel Thalmann 2025-01-16 16:08:39 +01:00
parent 5dc356d98e
commit ecaa581044

View file

@ -1,6 +1,6 @@
mod front_of_house {
mod hosting {
fn add_to_waitlist() {}
pub mod hosting {
pub fn add_to_waitlist() {}
fn seat_at_table() {}
}