wip trpc
This commit is contained in:
8
apps/server/src/api/index.ts
Normal file
8
apps/server/src/api/index.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { FastifyPluginAsync } from 'fastify';
|
||||
|
||||
const root: FastifyPluginAsync = async (fastify): Promise<void> => {
|
||||
fastify.get('/', async function (_request, _reply) {
|
||||
return { status: 'ok' };
|
||||
});
|
||||
};
|
||||
export default root;
|
||||
Reference in New Issue
Block a user