diff --git a/app1/index.js b/app1/index.js index 6a4d2f3..95cfbca 100644 --- a/app1/index.js +++ b/app1/index.js @@ -3,7 +3,7 @@ const fastify = require('fastify')({ }) fastify.get('/', async (request, reply) => { - return { hello: 'world' } + return { hello: 'world test' } }) const start = async () => {