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