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/tg/command.go
2016-02-09 10:01:05 +00:00

17 lines
251 B
Go

package tg
type ClientCommandType uint
const (
CmdSendTextMessage ClientCommandType = 1
)
type ClientTextMessageData struct {
Text string
}
type ClientCommand struct {
Type ClientCommandType
TextMessageData *ClientTextMessageData
}