db-vendo-client/p/dbnav/header.js

14 lines
222 B
JavaScript
Raw Permalink Normal View History

2025-01-11 23:38:00 +00:00
import {v4 as uuidv4} from 'uuid';
2025-01-11 23:37:07 +00:00
2024-12-21 23:04:05 +00:00
const getHeaders = (contentType) => {
return {
2025-01-11 23:38:00 +00:00
'X-Correlation-ID': uuidv4() + '_' + uuidv4(),
2024-12-21 23:04:05 +00:00
'Accept': contentType,
'Content-Type': contentType,
};
};
export {
getHeaders,
};