12 lines
238 B
Go
Raw Normal View History

2019-04-22 02:59:20 +00:00
package canal
import "encoding/json"
// Msg canal databus msg.
type Msg struct {
Action string `json:"action"`
Table string `json:"table"`
New json.RawMessage `json:"new"`
Old json.RawMessage `json:"old"`
}