structs.go 730 B

123456789101112131415161718192021222324252627282930313233343536
  1. package pubsub
  2. import "encoding/json"
  3. type AnswerType string
  4. const (
  5. Listen AnswerType = "LISTEN"
  6. Message AnswerType = "MESSAGE"
  7. Ping AnswerType = "PING"
  8. Pong AnswerType = "PONG"
  9. Reconnect AnswerType = "RECONNECT"
  10. Response AnswerType = "RESPONSE"
  11. Unlisten AnswerType = "UNLISTEN"
  12. )
  13. type Answer struct {
  14. Type AnswerType `json:"type"`
  15. Data interface{} `json:"data,omitempty"`
  16. Error string `json:"error,omitempty"`
  17. Nonce string `json:"nonce,omitempty"`
  18. }
  19. func (r Answer) JSON() []byte {
  20. bytes, _ := json.Marshal(r)
  21. return bytes
  22. }
  23. type AnswerDataTopics struct {
  24. Topics []string `json:"topics"`
  25. }
  26. func (d AnswerDataTopics) JSON() []byte {
  27. bytes, _ := json.Marshal(d)
  28. return bytes
  29. }