diff --git a/src/main.js b/src/main.js index 64e00a4..5e8bd55 100644 --- a/src/main.js +++ b/src/main.js @@ -20,7 +20,7 @@ export default async ({ req, res, log, error }) => { if (req.method === 'GET') { // Send a response with the res object helpers // `res.send()` dispatches a string back to the client - return res.send('Hello, World!'); + return res.send(`Hello, World, I'm Luke!`); } // `res.json()` is a handy helper for sending JSON