This repository has been archived on 2023-07-05. You can view files and clone it, but cannot push or open issues or pull requests.
clessy/mods/memegen.go

15 lines
215 B
Go
Raw Normal View History

2016-02-15 16:52:25 +00:00
package main
import (
"strings"
"github.com/hamcha/clessy/tg"
)
func memegen(broker *tg.Broker, update tg.APIMessage) {
if update.Caption != nil {
if strings.HasPrefix(*(update.Caption), "/meme") {
}
}
}