6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import { FastifyInstance } from "fastify";
|
|
|
|
export async function healthRoutes(app: FastifyInstance) {
|
|
app.get("/health", async () => ({ status: "ok" }));
|
|
}
|