Vladimir Hodakov
b8226d8aa8
Recent game update changed pokememes view in pokedeks, so we need to reflect it by updating parser. Introducing DataCache - a silver bullet for eliminating lags linked to database queries. Less queries, more in RAM, faster work. Needs testing in production environment.
21 lines
663 B
Go
21 lines
663 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package pokedexerinterface
|
||
|
||
import (
|
||
"git.wtfteam.pro/fat0troll/i2_bot/lib/dbmapping"
|
||
"github.com/go-telegram-bot-api/telegram-bot-api"
|
||
)
|
||
|
||
// PokedexerInterface implements Pokedexer for importing via appcontext.
|
||
type PokedexerInterface interface {
|
||
ParsePokememe(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
|
||
PokememesList(update *tgbotapi.Update)
|
||
PokememeInfo(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
BestPokememesList(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
|
||
DeletePokememe(update *tgbotapi.Update) string
|
||
}
|