Skip to content

Commit 93cfdf4

Browse files
committed
chore: unify response payload across all template configs
Signed-off-by: Thorsten Hans <[email protected]>
1 parent b209dc8 commit 93cfdf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/http-js/content/src/index.js.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ let router = AutoRouter();
3131
// Any route that does not return will be treated as a middleware
3232
// Any unmatched route will return a 404
3333
router
34-
.get("/", () => new Response("hello universe"))
34+
.get("/", () => new Response("Hello, Spin!"))
3535
.get('/hello/:name', ({ name }) => `Hello, ${name}!`)
3636

3737
addEventListener('fetch', (event) => {

0 commit comments

Comments
 (0)