17 lines
364 B
C++
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) {
|
|
|
|
}
|
|
}
|