1234567891011121314151617181920 |
- const config = require("../config")
- module.exports = {
- list: {
- url: config.base_dev_url + "bbs_chat_session/list",
- type: "get",
- },
- createSession: {
- url: config.base_dev_url + "bbs_chat_session/createSession",
- type: "get",
- },
- sendMsg: {
- url: config.base_dev_url + "bbs_chat_session/send",
- type: "post",
- },
- readUpdate: {
- url: config.base_dev_url + "bbs_chat_session/readUpdate",
- type: "get",
- },
- }
|