package com.yami.shop.im.client.constant;
|
|
public class LuckIMClientConstant {
|
|
public static final String LUCK_IM_HOST = "ws://47.121.136.124:8089/";
|
// public static final String LUCK_IM_HOST = "ws://127.0.0.1:8089/";
|
|
/**im websocket 通讯 url**/
|
public static final String LUCK_IM_MSG_URL = LUCK_IM_HOST + "im/luck/system/{auth}/{clientId}";
|
|
/**im websocket 通讯 url**/
|
public static final String LUCK_IM_USER_URL = LUCK_IM_HOST + "im/luck/user/{token}/{userId}";
|
|
}
|