express-modular-monolith 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +1 -1
- package/package.json +1 -1
- package/templates/javascript/src/modules/auth/auth.controller.js +1 -0
- package/templates/javascript/src/modules/auth/auth.middleware.js +1 -0
- package/templates/javascript/src/modules/auth/auth.model.js +1 -0
- package/templates/javascript/src/modules/auth/auth.route.js +1 -0
- package/templates/javascript/src/modules/auth/auth.service.js +1 -0
- package/templates/typescript/src/common/types/types.d.ts +1 -0
- package/templates/typescript/src/modules/auth/auth.controller.ts +1 -0
- package/templates/typescript/src/modules/auth/auth.middleware.ts +1 -0
- package/templates/typescript/src/modules/auth/auth.model.ts +1 -0
- package/templates/typescript/src/modules/auth/auth.route.ts +1 -0
- package/templates/typescript/src/modules/auth/auth.service.ts +1 -0
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth controller code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth middleware code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth database model code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth route code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth services code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write your own custom types here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth controller code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth middleware code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth database model code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth route code here
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// write auth services code here
|