mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 04:45:54 +00:00
18 lines
222 B
JavaScript
18 lines
222 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
/**
|
|
* Runs after this generator has finished
|
|
*
|
|
* @param {Object} scope
|
|
* @param {Function} cb
|
|
*/
|
|
|
|
module.exports = function afterGenerate(scope, cb) {
|
|
|
|
return cb();
|
|
};
|