telegram.go 349 B

1234567
  1. package config
  2. type Telegram struct {
  3. BotToken string `mapstructure:"bot-token" json:"botToken" yaml:"bot-token"` // Bot Token
  4. WebhookURL string `mapstructure:"webhook-url" json:"webhookUrl" yaml:"webhook-url"` // Webhook URL (可选)
  5. Debug bool `mapstructure:"debug" json:"debug" yaml:"debug"` // 调试模式
  6. }