ref: change root response

This commit is contained in:
Steve Korshakov 2025-08-02 23:09:10 -07:00
parent 1065d22de7
commit c0cc33cfc6

View File

@ -62,7 +62,7 @@ export async function startApi(): Promise<{ app: FastifyInstance; io: Server }>
methods: ['GET', 'POST']
});
app.get('/', function (request, reply) {
reply.send('Welcome to Everything API!');
reply.send('Welcome to Happy Server!');
});
app.setValidatorCompiler(validatorCompiler);
app.setSerializerCompiler(serializerCompiler);