model.go 258 B

1234567891011121314151617
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // Message is
  6. type Message struct {
  7. Action string `json:"action"`
  8. Table string `json:"table"`
  9. New json.RawMessage `json:"new"`
  10. }
  11. // ArcMsg is
  12. var ArcMsg struct {
  13. Aid int64 `json:"aid"`
  14. }