UNPKG

ts-node-app

Version:

CLI para geração de componentes em arquiteturas DDD, hexagonal ou Clean Architecture ...

43 lines 1.61 kB
{ "src": { "config": { "databaseConfig.ts": "Database configuration", "appConfig.ts": "Application configuration" }, "functions": { "createUser": { "handler.ts": "Handler for creating a user", "index.ts": "Entry point for the createUser function", "schema.ts": "Schema for input validation" }, "updateUser": { "handler.ts": "Handler for updating a user", "index.ts": "Entry point for the updateUser function", "schema.ts": "Schema for input validation" }, "deleteUser": { "handler.ts": "Handler for deleting a user", "index.ts": "Entry point for the deleteUser function", "schema.ts": "Schema for input validation" } }, "models": { "userModel.ts": "Model representing the user entity" }, "services": { "userService.ts": "Service for business logic related to users" }, "utils": { "dateUtil.ts": "Utility functions for date manipulation", "stringUtil.ts": "Utility functions for string manipulation" } }, "tests": { "e2e": { "createUser.spec.ts": "Tests for the createUser function", "updateUser.spec.ts": "Tests for the updateUser function", "deleteUser.spec.ts": "Tests for the deleteUser function" } }, "serverless.yml": "Serverless framework configuration file" }