|
package ocss
|
|
|
|
import "errors"
|
|
|
|
type Client struct {
|
|
BaseURL string
|
|
}
|
|
|
|
func NewClient(baseUrl string) *Client {
|
|
return &Client{
|
|
BaseURL: baseUrl,
|
|
}
|
|
}
|
|
|
|
func (c Client) GetDriverJourneys() ([]DriverJourney, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|