17 lines
397 B
Go
17 lines
397 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package pinnerinterface
|
||
|
||
import (
|
||
"github.com/go-telegram-bot-api/telegram-bot-api"
|
||
)
|
||
|
||
// PinnerInterface implements Pinner for importing via appcontext
|
||
type PinnerInterface interface {
|
||
Init()
|
||
|
||
PinMessageToSomeChats(update *tgbotapi.Update) string
|
||
PinMessageToAllChats(update *tgbotapi.Update) string
|
||
}
|