coolify/apps/server/src/api/index.ts
Andras Bacsai 2009dc11db wip trpc
2022-12-12 14:48:56 +01:00

8 lines
231 B
TypeScript

import type { FastifyPluginAsync } from 'fastify';
const root: FastifyPluginAsync = async (fastify): Promise<void> => {
fastify.get('/', async function (_request, _reply) {
return { status: 'ok' };
});
};
export default root;