19 lines
651 B
Go
19 lines
651 B
Go
|
package ocssapi
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
|
||
|
"git.coopgo.io/coopgo-platform/carpool-service/interoperability/ocss"
|
||
|
)
|
||
|
|
||
|
func (s *OCSSApiService) PostBookings(ctx context.Context, booking ocss.Booking) (*ocss.Booking, error) {
|
||
|
return nil, errors.New("method not implmeented - PostBookings")
|
||
|
}
|
||
|
func (s *OCSSApiService) PatchBooking(ctx context.Context, bookingId string, status ocss.BookingStatus, message *string) error {
|
||
|
return errors.New("method not implmeented - PatchBooking")
|
||
|
}
|
||
|
func (s *OCSSApiService) GetBooking(ctx context.Context, bookingId string) (*ocss.Booking, error) {
|
||
|
return nil, errors.New("method not implmeented - GetBooking")
|
||
|
}
|