You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

identify.go 410 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
1234567891011121314151617181920
  1. package protocol
  2. type AbstractResultMessage struct {
  3. ResultCode ResultCode
  4. Msg string
  5. }
  6. type AbstractIdentifyRequest struct {
  7. Version string
  8. ApplicationId string `json:"applicationId"`
  9. TransactionServiceGroup string
  10. ExtraData []byte
  11. }
  12. type AbstractIdentifyResponse struct {
  13. AbstractResultMessage
  14. Version string
  15. ExtraData []byte
  16. Identified bool
  17. }

Go Implementation For Seata