Adaptive thinking

This commit is contained in:
HugeFrog24
2026-07-16 17:10:50 +02:00
parent 82fff17e66
commit 0543283b8a
36 changed files with 5944 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
package main
import (
"context"
"github.com/go-telegram/bot"
"github.com/go-telegram/bot/models"
)
type TelegramClient interface {
SendMessage(ctx context.Context, params *bot.SendMessageParams) (*models.Message, error)
SendAudio(ctx context.Context, params *bot.SendAudioParams) (*models.Message, error)
SetMyCommands(ctx context.Context, params *bot.SetMyCommandsParams) (bool, error)
GetFile(ctx context.Context, params *bot.GetFileParams) (*models.File, error)
FileDownloadLink(f *models.File) string
Start(ctx context.Context)
}