invoice.go 254 B

1234567891011121314151617
  1. package tg
  2. import (
  3. tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
  4. )
  5. type InvoiceCompo struct {
  6. *MessageCompo
  7. tgbotapi.InvoiceConfig
  8. }
  9. func (compo *InvoiceCompo) SendConfig(
  10. sid SessionID, bot *Bot,
  11. ) (*SendConfig) {
  12. return nil
  13. }