import { WX_SHARE_USER } from '../utils/apiList' import { request, Response } from '../utils/http' export const shareRoom = async (roomId: string, userId: string): Promise => { return request.get(WX_SHARE_USER, { roomId: roomId, userId: userId }) }