Get all bookings
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 44s

This commit is contained in:
2025-04-15 10:25:02 +02:00
parent 4718de6c80
commit 575b8129b7
8 changed files with 743 additions and 398 deletions

View File

@@ -18,6 +18,7 @@ type Storage interface {
CreateBooking(internal.Booking) error
GetBooking(id string) (*internal.Booking, error)
GetUserBookings(userid string) ([]internal.Booking, error)
GetAllBookings() ([]internal.Booking, error)
UpdateBookingStatus(bookingid string, status string) error
// Caching temporary results