-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_app.py
More file actions
22 lines (19 loc) · 742 Bytes
/
Copy pathmain_app.py
File metadata and controls
22 lines (19 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# main_app.py
from parking_availability import check_parking_availability
from reservation import reserve_parking_space
from perks import view_perks_and_points
from surveillance import monitor_vehicle
from feedback import leave_feedback_and_rating
def display_menu():
# Implement the main menu display logic
print("\n=== CNParking Menu ===")
print("1. Check Parking Space Availability")
print("2. Reserve Parking Space")
print("3. View Perks and Points")
print("4. Monitor Vehicle (24-Hour Surveillance)")
print("5. Leave Feedback and Rating")
print("6. Exit")
# Implement the main program loop here
if __name__ == "__main__":
# Call functions or start the main loop here
pass