Web API for Oblique Strategies.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
303 B

  1. import { FastifyInstance } from 'fastify';
  2. import { CardControllerImpl } from './modules/card';
  3. export const addRoutes = (server: FastifyInstance) => {
  4. const cardController = new CardControllerImpl();
  5. server.route({
  6. method: 'POST',
  7. url: '/',
  8. handler: cardController.generate,
  9. });
  10. };