28 lines
464 B
JavaScript
28 lines
464 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
module.exports = {
|
|
description: 'Generates a Consul repository',
|
|
|
|
availableOptions: [],
|
|
|
|
root: __dirname,
|
|
|
|
fileMapTokens(options) {
|
|
return {
|
|
__path__() {
|
|
return path.join('services', 'repository');
|
|
}
|
|
};
|
|
},
|
|
locals(options) {
|
|
// Return custom template variables here.
|
|
return {
|
|
};
|
|
}
|
|
|
|
// afterInstall(options) {
|
|
// // Perform extra work here.
|
|
// }
|
|
};
|