feat: lots of stuff
This commit is contained in:
9
src/api/api.ts
Normal file
9
src/api/api.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { type FastifyPluginAsync } from 'fastify';
|
||||
|
||||
const api: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.get('/healthz', () => {
|
||||
return { status: 'ok' };
|
||||
});
|
||||
};
|
||||
|
||||
export { api };
|
||||
Reference in New Issue
Block a user