carpool-service/servers/ocss-api/booking-events.go

13 lines
286 B
Go
Raw Permalink Normal View History

2023-03-27 18:54:56 +00:00
package ocssapi
import (
"context"
"errors"
"git.coopgo.io/coopgo-platform/carpool-service/interoperability/ocss"
)
func (s *OCSSApiService) PostBookingEvents(ctx context.Context, event ocss.CarpoolBookingEvent) error {
return errors.New("method not implmeented - GetBooking")
}