You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
360 B
17 lines
360 B
package message |
|
|
|
// Relation str map to databus message |
|
type Relation struct { |
|
Action string `json:"action"` |
|
Table string `json:"table"` |
|
New struct { |
|
Attr int `json:"attribute"` |
|
FID int64 `json:"fid"` |
|
MID int64 `json:"mid"` |
|
} `json:"new"` |
|
Old struct { |
|
Attr int `json:"attribute"` |
|
FID int64 `json:"fid"` |
|
MID int64 `json:"mid"` |
|
} |
|
}
|
|
|