17 lines
254 B
Go
17 lines
254 B
Go
package tg
|
|
|
|
import (
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
|
|
)
|
|
|
|
type InvoiceCompo struct {
|
|
*MessageCompo
|
|
tgbotapi.InvoiceConfig
|
|
}
|
|
|
|
func (compo *InvoiceCompo) SendConfig(
|
|
sid SessionID, bot *Bot,
|
|
) (*SendConfig) {
|
|
return nil
|
|
}
|
|
|