Web API for code.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

8 rader
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. }