5 lines
156 B
JavaScript
5 lines
156 B
JavaScript
module.exports = (fileInfo, getResult) => {
|
|
fileInfo.fileName = getResult.file_name;
|
|
fileInfo.filePath = getResult.download_path;
|
|
return fileInfo;
|
|
};
|