bbs.js 492 B

1234567891011121314151617181920
  1. const config = require("../config")
  2. module.exports = {
  3. list: {
  4. url: config.base_dev_url + "bbs_chat_session/list",
  5. type: "get",
  6. },
  7. createSession: {
  8. url: config.base_dev_url + "bbs_chat_session/createSession",
  9. type: "get",
  10. },
  11. sendMsg: {
  12. url: config.base_dev_url + "bbs_chat_session/send",
  13. type: "post",
  14. },
  15. readUpdate: {
  16. url: config.base_dev_url + "bbs_chat_session/readUpdate",
  17. type: "get",
  18. },
  19. }