carpool-service/interoperability/ocss/client.go

10 lines
161 B
Go
Raw Normal View History

2023-03-27 18:54:56 +00:00
package ocss
import "errors"
type Client struct{}
func (c Client) GetDriverJourneys() ([]DriverJourney, error) {
return nil, errors.New("not implemented")
}