mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-11 16:52:42 +08:00
8 lines
118 B
JavaScript
8 lines
118 B
JavaScript
const { glob } = require('glob')
|
|
const { promisify } = require('util')
|
|
|
|
module.exports = {
|
|
glob: promisify(glob)
|
|
}
|
|
|