feat: change the message in indexroute

This commit is contained in:
1 2022-12-01 15:27:29 -05:00
parent a887fe2ec2
commit 63b8c95b52
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ import { FastifyInstance } from 'fastify';
export default function (router: FastifyInstance) {
router.get('/', async (request, reply) => {
return { hello: 'world' };
return { message: "hey" };
});
}