mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-04-20 23:23:56 +03:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
const formatTripReq = ({profile, opt}, id) => {
|
|
return {
|
|
endpoint: profile.tripEndpoint,
|
|
path: id,
|
|
method: 'get',
|
|
};
|
|
};
|
|
|
|
export {
|
|
formatTripReq,
|
|
};
|