@mongez/gnz
Version:
Generator Z, the next generation of scaffolding tools.
15 lines (14 loc) • 681 B
JavaScript
import {createGenerator}from'../../generators-list.js';import {generate}from'./generator.js';// this is the entry file of your generator.
// it is responsible for creating the generator instance.
// DO not add any code here, use generator.ts instead.
// use 'template.ts' to add the code template.
const generateGenerateClientRestfulService = createGenerator({
// generate name
name: "generate-client-restful-service",
// label can get styled text for terminal display.
label: "Generate Client Restful Service",
defaultOptions: {
// default options here
},
generate,
});export{generateGenerateClientRestfulService};//# sourceMappingURL=index.js.map