mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-17 05:07:23 +08:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
|
|
function humanId() {
|
||
|
|
return 'mock-human-id';
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = humanId;
|
||
|
|
module.exports.default = humanId;
|
||
|
|
module.exports.humanId = humanId;
|