18 lines
318 B
C++
18 lines
318 B
C++
//
|
|
// Created by dongl on 23-6-1.
|
|
//
|
|
|
|
#ifndef IM2_IMCONTROLLER_H
|
|
#define IM2_IMCONTROLLER_H
|
|
|
|
|
|
#include "../../mmm/handler.h"
|
|
|
|
class IMController : public handler {
|
|
public:
|
|
void run(std::shared_ptr<agreement_request> request, std::shared_ptr<agreement_response> response) override;
|
|
};
|
|
|
|
|
|
#endif //IM2_IMCONTROLLER_H
|