项目文件夹

文件
2026-07-13 12:08:39 +08:00

8 行
148 B
JavaScript

// Returns the raw response without JSON parsing
export function rawResponse(data) {
const response = {
data: data,
};
return response;
}