feat: lots of stuff

This commit is contained in:
Morten Olsen
2025-10-16 00:23:18 +02:00
parent 521ffd395f
commit 8e594d59fd
30 changed files with 1739 additions and 31 deletions

9
src/api/api.ts Normal file
View File

@@ -0,0 +1,9 @@
import { type FastifyPluginAsync } from 'fastify';
const api: FastifyPluginAsync = async (fastify) => {
fastify.get('/healthz', () => {
return { status: 'ok' };
});
};
export { api };