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.

model.go 590 B

4 months ago
4 months ago
123456789101112131415161718192021222324252627
  1. package participant
  2. type RespErr struct {
  3. Code int32 `json:"code"`
  4. Message string `json:"message"`
  5. }
  6. type Resp struct {
  7. Code int32 `json:"code"`
  8. Message string `json:"msg"`
  9. Data interface{} `json:"data"`
  10. }
  11. type CreateParam struct {
  12. Name string `json:"name" binding:"required"`
  13. Desc string `json:"desc"`
  14. Src interface{} `json:"src,omitempty"`
  15. Param interface{} `json:"param,omitempty"`
  16. }
  17. type TaskCreateParam struct {
  18. }
  19. type TaskResultSyncParam struct {
  20. Src interface{} `json:"src,omitempty"`
  21. Param interface{} `json:"param,omitempty"`
  22. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.