mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
// Returns the raw response without JSON parsing
|
|||
export function rawResponse(data) {
|
|||
const response = {
|
|||
data: data,
|
|||
};
|
|||
return response;
|
|||
}
|