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

38 lines
1.2 KiB
Go
Raw Normal View History

// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package talkersinterface
import (
2017-10-18 07:03:34 +04:00
// 3rd party
"github.com/go-telegram-bot-api/telegram-bot-api"
2017-10-18 07:03:34 +04:00
// local
"../../dbmapping"
)
// TalkersInterface implements Talkers for importing via appcontex
type TalkersInterface interface {
2017-10-18 07:03:34 +04:00
Init()
HelloMessageUnauthorized(update tgbotapi.Update)
HelloMessageAuthorized(update tgbotapi.Update, playerRaw dbmapping.Player)
2017-10-22 14:04:14 +04:00
HelpMessage(update tgbotapi.Update, playerRaw *dbmapping.Player)
2017-10-18 07:03:34 +04:00
PokememesList(update tgbotapi.Update, page int)
PokememeInfo(update tgbotapi.Update, playerRaw dbmapping.Player) string
BestPokememesList(update tgbotapi.Update, playerRaw dbmapping.Player) string
2017-10-18 07:03:34 +04:00
PokememeAddSuccessMessage(update tgbotapi.Update)
PokememeAddDuplicateMessage(update tgbotapi.Update)
PokememeAddFailureMessage(update tgbotapi.Update)
ProfileAddSuccessMessage(update tgbotapi.Update)
ProfileAddFailureMessage(update tgbotapi.Update)
ProfileMessage(update tgbotapi.Update, playerRaw dbmapping.Player) string
2017-10-18 07:03:34 +04:00
AnyMessageUnauthorized(update tgbotapi.Update)
GetterError(update tgbotapi.Update)
2017-10-22 14:04:14 +04:00
AdminBroadcastMessage(update tgbotapi.Update) string
2017-10-18 07:03:34 +04:00
DurakMessage(update tgbotapi.Update)
MatMessage(update tgbotapi.Update)
}