From 6f74e37b151be6f70dd0b796df9f28131f8c8955 Mon Sep 17 00:00:00 2001 From: CyanoFresh Date: Tue, 17 Aug 2021 01:19:58 +0300 Subject: [PATCH] src file changed --- app1/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () => {