13 lines
286 B
Go
13 lines
286 B
Go
|
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")
|
||
|
}
|