mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +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');
|
||
|
}
|
||
|
};
|