initial commit
This commit is contained in:
18
servers/ocss-api/book.go
Normal file
18
servers/ocss-api/book.go
Normal file
@@ -0,0 +1,18 @@
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user