1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-03-14 10:15:20 +00:00
_/esbuild-fastify/src/routes/index.ts

12 lines
254 B
TypeScript
Raw Normal View History

2021-10-12 18:23:14 +09:00
import { FastifyInstance, FastifyReply } from "fastify";
async function sayHello(_: unknown, reply: FastifyReply) {
await reply.send("hello!");
}
async function index(fastify: FastifyInstance) {
fastify.get("/", sayHello);
}
export default index;