2020-05-09 17:07:02 +00:00
|
|
|
package telegram
|
|
|
|
|
2020-05-09 18:54:42 +00:00
|
|
|
import (
|
|
|
|
"git.dragon-labs.de/alphyron/group_helper/models"
|
|
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
|
|
|
|
)
|
2020-05-09 17:07:02 +00:00
|
|
|
|
|
|
|
type Routine interface {
|
2020-05-09 20:44:28 +00:00
|
|
|
Update(botAPI *tgbotapi.BotAPI, update *tgbotapi.Update, group *models.Group) error
|
2020-05-09 17:07:02 +00:00
|
|
|
}
|