18 lines
195 B
Go
18 lines
195 B
Go
|
package handler
|
||
|
|
||
|
import (
|
||
|
"github.com/mymmrac/telego"
|
||
|
)
|
||
|
|
||
|
type Type uint8
|
||
|
|
||
|
const (
|
||
|
Noop Type = iota
|
||
|
Message
|
||
|
ChatMemberUpdated
|
||
|
)
|
||
|
|
||
|
type Handler interface {
|
||
|
Handle(update telego.Update) error
|
||
|
}
|