Files
library/api/src/app/routes/root.ts
T
2026-02-03 10:09:37 -08:00

8 lines
187 B
TypeScript

import { FastifyInstance } from 'fastify';
export default async function (fastify: FastifyInstance) {
fastify.get('/', async function () {
return { message: 'Hello API' };
});
}