5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/vendor/github.com/keybase/go-keybase-chat-bot/kbchat/types.go

15 lines
277 B
Go

package kbchat
import (
"github.com/keybase/go-keybase-chat-bot/kbchat/types/chat1"
)
type Result struct {
Convs []chat1.ConvSummary `json:"conversations"`
}
type SendResponse struct {
Result chat1.SendRes `json:"result"`
Error *Error `json:"error,omitempty"`
}