/** */ import { request } from '../../utils/request' /** * 获取通知消息 */ export const getMyNotify = (userId: string): Promise => { let url = `/mobile/notify/${userId}` return request({ url: url, method: 'GET' }) } /** * 注册设备 */ export const registerServer = (cid: string): Promise => { let url = `/push/register/${cid}` return request({ url: url, method: 'GET', }) }