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.

rm.go 311 B

3 years ago
123456789101112131415161718
  1. package protocol
  2. type RegisterRMRequest struct {
  3. AbstractIdentifyRequest
  4. ResourceIds string
  5. }
  6. func (req RegisterRMRequest) GetTypeCode() int16 {
  7. return TypeRegRm
  8. }
  9. type RegisterRMResponse struct {
  10. AbstractIdentifyResponse
  11. }
  12. func (resp RegisterRMResponse) GetTypeCode() int16 {
  13. return TypeRegRmResult
  14. }

Go Implementation For Seata