Archived
1
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
i2_bot/lib/sender/senderinterface/senderinterface.go

18 lines
483 B
Go
Raw Normal View History

// i2_bot Instinct PokememBro Bot
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
package senderinterface
import (
"github.com/go-telegram-bot-api/telegram-bot-api"
)
// SenderInterface implements Sender for importing via appcontext
type SenderInterface interface {
Init()
SendMarkdownAnswer(update *tgbotapi.Update, message string)
SendMarkdownMessageToChatID(chatID int64, message string)
SendMarkdownReply(update *tgbotapi.Update, message string, messageID int)
}