db-vendo-client/p/dbregioguide/trip-req.js

12 lines
157 B
JavaScript
Raw Normal View History

const formatTripReq = ({profile, opt}, id) => {
return {
endpoint: profile.tripEndpoint,
path: id,
method: 'get',
};
};
export {
formatTripReq,
};