diff --git a/restaurant/src/lib.rs b/restaurant/src/lib.rs
index 591e245..f102a02 100644
--- a/restaurant/src/lib.rs
+++ b/restaurant/src/lib.rs
@@ -13,3 +13,11 @@ mod front_of_house {
         fn take_payment() {}
     }
 }
+
+pub fn eat_at_restaurant() {
+    // Absolute path
+    crate::front_of_house::hosting::add_to_waitlist();
+
+    // Relative path
+    front_of_house::hosting::add_to_waitlist();
+}