You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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"`
}