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

32 lines
1.0 KiB
Go
Raw Normal View History

// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017-2018 Vladimir "fat0troll" Hodakov
package talkersinterface
import (
2018-02-11 18:58:41 +04:00
"github.com/go-telegram-bot-api/telegram-bot-api"
2018-05-19 12:14:25 +04:00
"github.com/fat0troll/i2_bot/lib/dbmapping"
)
// TalkersInterface implements Talkers for importing via appcontex
type TalkersInterface interface {
2017-10-18 07:03:34 +04:00
Init()
2017-12-02 19:50:56 +04:00
AcademyMessage(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
BastionMessage(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
GamesMessage(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
HelpMessage(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
2018-03-06 21:38:25 +04:00
FAQMessage(update *tgbotapi.Update) string
RulesMessage(update *tgbotapi.Update) string
2017-11-14 03:44:21 +04:00
AnyMessageUnauthorized(update *tgbotapi.Update) string
2018-02-11 18:58:41 +04:00
BanError(update *tgbotapi.Update) string
BotError(update *tgbotapi.Update) string
2017-11-14 03:44:21 +04:00
2017-12-03 00:40:30 +04:00
LongMessage(update *tgbotapi.Update) string
DurakMessage(update *tgbotapi.Update) string
MatMessage(update *tgbotapi.Update) string
2017-12-28 05:57:51 +04:00
NewYearMessage2018()
}