11 lines
253 B
Go
11 lines
253 B
Go
package telegram
|
|
|
|
import (
|
|
"git.dragon-labs.de/alphyron/group_helper/models"
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
|
|
)
|
|
|
|
type Routine interface {
|
|
Update(botAPI *tgbotapi.BotAPI, update *tgbotapi.Update, group *models.Group) error
|
|
}
|