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