2023-10-13 23:27:20 +03:00
|
|
|
package tg
|
|
|
|
|
|
|
|
import (
|
|
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InvoiceCompo struct {
|
|
|
|
*MessageCompo
|
|
|
|
tgbotapi.InvoiceConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (compo *InvoiceCompo) SendConfig(
|
2024-07-21 16:02:47 +03:00
|
|
|
sid SessionID, bot *Bot,
|
2023-10-13 23:27:20 +03:00
|
|
|
) (*SendConfig) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|