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