core/service/telegram_svc.go

20 lines
339 B
Go
Raw Normal View History

2024-06-27 13:27:16 +00:00
package service
import "github.com/gofiber/fiber/v2"
func (s *Service) GetPoolTgBots(ctx *fiber.Ctx) error {
return nil
}
func (s *Service) AddingTgBot(ctx *fiber.Ctx) error {
return nil
}
func (s *Service) DeleteTgBotByID(ctx *fiber.Ctx) error {
return nil
}
func (s *Service) SendAuthTgCode(ctx *fiber.Ctx) error {
return nil
}