messageCenter.api 450 B

12345678910111213141516171819202122
  1. syntax = "v1"
  2. info(
  3. title: "type title here"
  4. desc: "type desc here"
  5. author: "type author here"
  6. email: "type email here"
  7. version: "type version here"
  8. )
  9. type request {
  10. // TODO: add members here and delete this comment
  11. }
  12. type response {
  13. // TODO: add members here and delete this comment
  14. }
  15. service messageCenter {
  16. @handler handlerName // TODO: replace handler name and delete this comment
  17. get /users/id/:userId (request) returns (response)
  18. }