IM/MS/works/controller/IMController.cpp
dongl 12cc086093 主要修复邮箱登陆,
可以根据account搜索用户
添加暂时没做
下一个步 添加 好友
2023-06-07 20:02:54 +08:00

17 lines
364 B
C++

//
// Created by dongl on 23-6-1.
//
#include "IMController.h"
void IMController::run(std::shared_ptr<agreement_request> request, std::shared_ptr<agreement_response> response) {
// msg push 储存库内
if (request->m_mph->mp_type() == mp::MP_IM_PUSH_MSG) {
}
// 传来 im msg
else if (request->m_mph->mp_type() == mp::MP_IM_MSG) {
}
}