1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/vercel-fastify/api/_routes/hello/index.ts

8 lines
182 B
TypeScript
Raw Normal View History

2022-04-26 10:51:36 +09:00
import { FastifyInstance } from "fastify";
async function index(fastify: FastifyInstance): Promise<void> {
fastify.get("/", async () => "Hello, World!");
}
export default index;