carpool-service/interoperability/ocss/client.go

18 lines
263 B
Go
Raw Normal View History

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