Structs held in ChatAPI need to be pointers in order to not be included in marshalled JSON

This commit is contained in:
Sam
2019-07-24 23:01:45 -04:00
parent d870b1aa3b
commit 0ea666392d

View File

@ -15,13 +15,13 @@ type RunOptions struct {
type ChatAPI struct {
Type string `json:"type,omitempty"`
Source string `json:"source,omitempty"`
Msg msg `json:"msg,omitempty"`
Msg *msg `json:"msg,omitempty"`
Method string `json:"method,omitempty"`
Params params `json:"params,omitempty"`
Params *params `json:"params,omitempty"`
Message string `json:"message,omitempty"`
ID int `json:"id,omitempty"`
Ratelimits []rateLimits `json:"ratelimits,omitempty"`
Result result `json:"result,omitempty"`
Result *result `json:"result,omitempty"`
keybase Keybase // Some methods will need this, so I'm passing it but keeping it unexported
}
type sender struct {