Describe the solution you'd like
add a new command for generating a new sequelize model with auto-include CRUD operations in the controller, routes, and swagger docs
Describe alternatives you've considered
my proposed command example: lts ness add model NewModelName.
this will create a new file inside the existing NESS project like below:
src/models/newModelName.model.ts
src/controllers/newModelName.controller.ts
src/routes/newModelName.routes.ts
test/models/newModelName.model.test.ts
test/controllers/newModelName.controller.test.ts
Describe the solution you'd like
add a new command for generating a new sequelize model with auto-include CRUD operations in the controller, routes, and swagger docs
Describe alternatives you've considered
my proposed command example:
lts ness add model NewModelName.this will create a new file inside the existing
NESSproject like below:src/models/newModelName.model.tssrc/controllers/newModelName.controller.tssrc/routes/newModelName.routes.tstest/models/newModelName.model.test.tstest/controllers/newModelName.controller.test.ts