package config type Telegram struct { BotToken string `mapstructure:"bot-token" json:"botToken" yaml:"bot-token"` // Bot Token WebhookURL string `mapstructure:"webhook-url" json:"webhookUrl" yaml:"webhook-url"` // Webhook URL (可选) Debug bool `mapstructure:"debug" json:"debug" yaml:"debug"` // 调试模式 BindURL string `mapstructure:"bind-url" json:"bindUrl" yaml:"bind-url"` // 绑定页面URL PlatformAPIURL string `mapstructure:"platform-api-url" json:"platform-api-url" yaml:"platform-api-url"` // Vitiens平台API地址 }