| 123456789 |
- import { FastifyInstance } from 'fastify'
- import { TgMsgSendController } from '../controllers/tg-msg-send.controller'
- import { SendTgMsgSendBody } from '../dto/tg-msg-send.dto'
- export default async function tgMsgSendRoutes(fastify: FastifyInstance) {
- const tgMsgSendController = new TgMsgSendController(fastify)
- fastify.post<{ Body: SendTgMsgSendBody }>('/send', tgMsgSendController.sendMessage.bind(tgMsgSendController))
- }
|