import { type FastifyReply, type FastifyRequest } from "fastify"; import { testdb } from "../../store/store.js"; const test = async (request: FastifyRequest, reply: FastifyReply) => { testdb(); return [{ name: "Alice" }]; }; export { test };