2023-03-27 18:54:56 +00:00
|
|
|
package ocss
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
2023-05-07 23:29:59 +00:00
|
|
|
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")
|
|
|
|
}
|