mirror of
https://github.com/smallfawn/QLScriptPublic.git
synced 2025-12-17 15:25:10 +08:00
14 lines
248 B
JavaScript
14 lines
248 B
JavaScript
module.exports = {
|
|
getBucket,
|
|
updateBucket
|
|
}
|
|
const fs = require('fs')
|
|
function getBucket(bucketName) {
|
|
return fs.readFileSync(bucketName)
|
|
}
|
|
|
|
function updateBucket(bucketName, bucket) {
|
|
return fs.writeFileSync(bucketName, bucket)
|
|
}
|
|
|