mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 08:25:06 +03:00
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
|
module.exports = {
|
||
|
get readCSV() {
|
||
|
return require('./read-csv');
|
||
|
},
|
||
|
|
||
|
get zipFolder() {
|
||
|
return require('./zip-folder');
|
||
|
}
|
||
|
};
|