2019-04-22 02:59:20 +00:00

12 lines
238 B
Go

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"`
}