htmv 0.0.16 → 0.0.17
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/dist/cli/commands/gen.js
CHANGED
|
@@ -30,7 +30,7 @@ export default (_params: RouteParams) => {
|
|
|
30
30
|
return "Just a simple ALL method.";
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
export function POST (_params: RouteParams)
|
|
33
|
+
export function POST (_params: RouteParams) {
|
|
34
34
|
return "Searching for something more specific? How about a POST method route?"
|
|
35
35
|
};
|
|
36
36
|
`;
|
package/package.json
CHANGED
package/src/cli/commands/gen.ts
CHANGED
|
@@ -36,7 +36,7 @@ export default (_params: RouteParams) => {
|
|
|
36
36
|
return "Just a simple ALL method.";
|
|
37
37
|
};
|
|
38
38
|
|
|
39
|
-
export function POST (_params: RouteParams)
|
|
39
|
+
export function POST (_params: RouteParams) {
|
|
40
40
|
return "Searching for something more specific? How about a POST method route?"
|
|
41
41
|
};
|
|
42
42
|
`;
|