- import { ENV } from '../../../../env'
- export const apiServer = ENV === 'dev' ? 'https://v4-test.4dkankan.com' : ''
- export const shopServer = ENV === 'dev' ? 'https://test.4dkankan.com/livestream' : ''
- export const socketServer = 'wss://ws.4dkankan.com'
- export const GET_ROOM_LIST = apiServer + '/takelook/roomList'
- export const GET_ROOM = apiServer + '/takelook/roomInfo'
- export const GET_SIG = apiServer + '/takelook/tencentYun/getSign'
- export const LEAVE_ROOM = apiServer + '/takelook/inOrOutRoom'
|