Web API for code.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
181 B

  1. import { FastifyInstance } from 'fastify';
  2. export const addRoutes = (SERVER: FastifyInstance) => {
  3. SERVER.get('/', async (_, reply) => {
  4. reply.send({hello: 'world'})
  5. });
  6. }