d0f8cd9e78
refs https://github.com/TryGhost/Ghost/pull/11539 - The script helps to migrate CSV exports from Substack to Ghost-compatible ones
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
module.exports = {
|
|
get formatCSV() {
|
|
return require('./format-csv');
|
|
},
|
|
|
|
get converter() {
|
|
return require('./converter');
|
|
}
|
|
};
|