16 lines
425 B
Go
16 lines
425 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package forwarderinterface
|
||
|
||
import (
|
||
"github.com/go-telegram-bot-api/telegram-bot-api"
|
||
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
|
||
)
|
||
|
||
// ForwarderInterface implements Getters for importing via appcontext.
|
||
type ForwarderInterface interface {
|
||
Init()
|
||
ProcessForward(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
}
|