mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 07:51:55 +03:00
1a9a10c82b
refs #9178, refs 849e97640f
- i've reconsidered, these modules belong to lib
- prettify package-json module
12 lines
171 B
JavaScript
12 lines
171 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get readCSV() {
|
|
return require('./read-csv');
|
|
},
|
|
|
|
get zipFolder() {
|
|
return require('./zip-folder');
|
|
}
|
|
};
|