mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
11 lines
167 B
JavaScript
11 lines
167 B
JavaScript
const getHeaders = (contentType) => {
|
|
return {
|
|
'X-Correlation-ID': 'null',
|
|
'Accept': contentType,
|
|
'Content-Type': contentType,
|
|
};
|
|
};
|
|
|
|
export {
|
|
getHeaders,
|
|
};
|